下面的JS代码输出当前网页最后修改时间,用到了document.lastModified属性<!DOCTYPE html><html><body>This document was last modified on:<script>document.write(document.lastModi……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2196浏览 1354个赞
JavaScript获得当前日期是星期几,主要通过getDay函数获得当前日期是一个星期的第几天<!DOCTYPE html><html><body><p id="demo">Click the button to display todays day of the week.&……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2029浏览 1991个赞
JavaScript通过replace函数替换字符串,下面的代码将Visit Microsoft中的MicroSoft替换成75271.com<!DOCTYPE html><html><body><p>Click the button to replace "Microsoft"……继续阅读 » 水墨上仙 4年前 (2021-03-20) 3006浏览 1607个赞
JavaScript通过indexOf获得子字符串在字符串中的位置<!DOCTYPE html><html><body><p id="demo">Click the button to locate where in the string a specifed value occ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2497浏览 235个赞
字符串对象有一个公用的属性length用于获得字符串的长度<!DOCTYPE html><html><body><script>var txt = "Hello World!";document.write(txt.length);</script>&l……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1494浏览 2445个赞
下面的代码通过函数的方式定义了一个对象person,并通过new方法对其进行实例化<!DOCTYPE html><html><body><script>function person(firstname,lastname,age,eyecolor){this.firstname=firstna……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1379浏览 2604个赞
JavaScript中可以直接通过类似python字典的方式定义对象,下面的代码你一看就能明白怎么回事,不用多说。<!DOCTYPE html><html><body><script>person={firstname:"John",lastname:"Doe&quo……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2492浏览 629个赞
JavaScript通过setTimeout显示一个简单的电子时钟,这段代码主要演示了时间函数和setTimeout定时执行函数的用法<!DOCTYPE html><html><head><script>function startTime(){var today=new Date();var……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2549浏览 667个赞
下面的代码执行后点击按钮会延迟3秒钟弹出一个警告框,主要演示了setTimeout的使用方法<!DOCTYPE html><html><body><p>75271.com Click the button to wait 3 seconds, then alert "Hello"……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2863浏览 2019个赞
点击按钮后每隔一秒计数器增加1,通过setTimeout实现<!DOCTYPE html><html><head><script>var c=0;var t;var timer_is_on=0;function timedCount(){document.getElementById(&……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2218浏览 1621个赞
下面的代码通过try…catch语句捕捉错误后弹出confirm对话框,如果用户点击cancel按钮则跳转至首页<!DOCTYPE html><html><head><script>var txt="";function message(){try { ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2083浏览 1613个赞
我们可以通过设定按钮的onclick属性来给按钮绑定onclick事件<!DOCTYPE html><html><head><script>function displayDate(){document.getElementById("demo").innerHTML=Dat……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1691浏览 2220个赞
JavaScript中通过for…in语句遍历对象,JS中我们可以通过for..in语句输出对象的每一个元素和元素值<!DOCTYPE html><html><body><p>75271.com Click the button to loop through the properties……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2068浏览 412个赞
和C语言一样,JavaScript中可以通过break语句终止循环的继续执行<!DOCTYPE html><html><body><p>75271.com Click the button to do a loop with a break.</p><button onclick……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2843浏览 632个赞
下面的代码演示了JavaScript中do…while循环语句的使用方法<!DOCTYPE html><html><body><p>Click the button to loop through a block of as long as <em>i</em> ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2264浏览 2875个赞
下面的JS代码演示了如何通过window.open方法打开一个弹出窗口,然后通过弹出窗口的句柄向父窗口输出信息的方法<!DOCTYPE html><html><head><script>function openWin(){myWindow=window.open('',……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2702浏览 2425个赞
下面的JS代码演示了如何通过window.open弹出一个新的窗口,然后动态修改窗口大小<!DOCTYPE html><html><head><script>var w;function openwindow(){w=window.open('','',……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1590浏览 1913个赞
下面的代码演示了如何弹出一个空白窗口,然后向空白窗口内输出自定义内容<!DOCTYPE html><html><head><script>function openWin(){myWindow=window.open('','','width=2……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2176浏览 1065个赞
通过JS的window.open方法可以弹出窗口,设定不同的参数可以控制窗口的大小和样式等等,下面是一个详细的范例<!DOCTYPE html><html><head><script>function open_win(){window.open("http://www.75271.c……继续阅读 » 水墨上仙 4年前 (2021-03-20) 3009浏览 1547个赞
这里使用了只带一个url作为参数的window.open函数用于在新窗口打开一个新网页<!DOCTYPE html><html><head><script>function open_win() {window.open("http://www.75271.com");}……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2717浏览 2739个赞
JavaScript通过Math.Min返回两个数中较小的那个<!DOCTYPE html><html><body><p id="demo">Click the button to return the lowest number of 5 and 10.</p>……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2414浏览 1864个赞
JavaScript的Math对象带有一个max函数用于获取两个数字的较大数,下面的代码详细演示了max的用法<!DOCTYPE html><html><body><p id="demo">Click the button to return the highest number……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1868浏览 1656个赞
JavaScript的Math对象的random方法可以返回一个0-1之间随机数<!DOCTYPE html><html><body><p id="demo">Click the button to display a random number.</p><……继续阅读 » 水墨上仙 4年前 (2021-03-20) 3122浏览 2306个赞
Javascript 获取当前运行脚本文件所在的目录DirectoryUtility = { // function getCurrentDirectory: returns currentDirectory path // with a trailing backslash. getCurrentDirectory : fun……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1448浏览 1045个赞
JavaScript计算两个日期相差多少天,包含了闰年的计算//判断年份是否是闰年function isLeapYear(year){ if(year%400==0){ return false; }else if(year%4==0){ return true; }else{……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2057浏览 2963个赞
JavaScript在网页上显示农历日期<html xmlns="http://www.w3.org/1999/xhtml" ><head ><title>JavaScript显示农历 - 75271.com</title></head><body>&l……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1804浏览 381个赞
JavaScript计算日期加上指定天数后的日期转自:http://blog.chinaunix.net/uid/257761.html//判断年份是否是闰年function isLeapYear(year){ if(year%400==0){ return false; }else if(year%4……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2853浏览 1643个赞
JavaScript判断指定年份是否为闰年function isLeapYear(year){ if(year%400==0){ return false; }else if(year%4==0){ return true; }else{ return false;……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1670浏览 1340个赞
下面的代码通过一个JS按钮控制打印机打印当前页面<!DOCTYPE html><html><head><script>function printpage(){window.print();}</script></head><body><in……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1684浏览 1727个赞
下面的JS代码通过window.open弹出一个新窗口,然后通过JS代码控制窗口移动到指定的位置<!DOCTYPE html><html><head><script>function openWin(){myWindow=window.open('',''……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1564浏览 1387个赞
下面的JS代码通过window.open打开一个新的空白窗口,然后通过document.write方法向新窗口内输出内容,最后让新窗口获得焦点。<!DOCTYPE html><html><head><script>function openWin(){myWindow=window.open(&……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2556浏览 808个赞
JS中我们可以通过窗口对象的resizeBy方法动态修改窗口的大小<!DOCTYPE html><html><head><script>function resizeWindow(){top.resizeBy(100,100);}</script></head>……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2082浏览 757个赞
下面的JS代码可以在网页中输出到大小的html标签文本<!DOCTYPE html><html><body><p>75271.com Click the button to loop from 1 to 6, to make HTML headings.</p><button……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1791浏览 2081个赞
JS中通过window.open弹出的窗口,我们可以通过窗口对象的close方法来关闭,下面的代码演示了通过两个按钮分别打开和关闭窗口的方法<!DOCTYPE html><html><head><script>function openWin(){myWindow=window.open(&qu……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2019浏览 2326个赞
JavaScript中for循环使用代码演示,下面的代码演示了一个简单的for循环语句输出0到4的数字<!DOCTYPE html><html><body><p>75271.com,Click the button to loop through a block of code five times……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1585浏览 2068个赞
JavaScript定义一个简单的乘法函数下面的代码定义了一个myFunction函数,带有两个参数a和b,返回a*b的结果<!DOCTYPE html><html><body><p>75271.com,This example calls a function which performs a ……继续阅读 » 水墨上仙 4年前 (2021-03-20) 2966浏览 2692个赞
JavaScript函数可以通过return语句返回值,下面是一个详细的演示。<!DOCTYPE html><html><head><script>function myFunction(){return ("Hello Sharejs.com");}</scrip……继续阅读 » 水墨上仙 4年前 (2021-03-20) 3008浏览 2395个赞
下面的代码演示了JavaScript中如何定义一个带参数的函数,并点击按钮调用该函数<!DOCTYPE html><html><body><p>Click the button to call a function with arguments</p><button oncli……继续阅读 » 水墨上仙 4年前 (2021-03-20) 1405浏览 621个赞
// Changes XML to JSONfunction xmlToJson(xml) { // Create the return object var obj = {}; if (xml.nodeType == 1) { // element // do attributes if (xml.attributes.length……继续阅读 » 开心洋葱 4年前 (2021-03-20) 1625浏览 0评论2357个赞
在JavaScript里乘法比除法的性能要好得多,所以同样的程序如果能用乘法就不用除法//除法,慢var my_variable = 5 / 2;//乘法,快var my_variable = 5 * 0.5; ……继续阅读 » 水墨上仙 5年前 (2019-08-03) 3156浏览 2846个赞
最近,Google Project Zero公开披露了一个macOS系统的神漏洞,一行JS代码便可以让Mac电脑弹计算器。这个神漏洞真的特别有趣,研究员发现macOS的内置应用HelpViewer有一个内部协议调用,可以打开本机上的任何文件,这个协议调用的路径检查有点缺陷,使用某些特定语法可以绕过,去打开攻击者指定的文件。以上只能做到本地命令执行,研究员……继续阅读 » 开心洋葱 8年前 (2017-03-22) 1848浏览 0评论1442个赞
谷歌浏览器显示通知消息JS代码点击显示通知会弹出通知对话框,如下图效果:h5通知消息对话框代码如下:<!DOCTYPE html><html lang="en"><head> <meta charset="UTF-8"> <……继续阅读 » 开心洋葱 8年前 (2017-03-22) 1854浏览 0评论150个赞
<!DOCTYPE html><html><head><meta charset="utf-8"><title>更改iframe内容</title><script>function changeStyle(){ ……继续阅读 » 开心洋葱 8年前 (2017-02-14) 1524浏览 0评论269个赞
排名下载次数Star 数扩展包一句话描述128839683968intervention/image图片处理扩展包,支持裁剪、水印等处理,使用教程请见https://laravel-china.org/topics/1903222153723694barryvdh/laravel-debugbar页面调试工具栏 ……继续阅读 » 开心洋葱 8年前 (2017-02-10) 2345浏览 0评论1651个赞
就在昨天, Facebook 发布了新的 node.js 包管理器 Yarn 用以替代 npm 。咱虽然是个半桶水的咸鱼前端,不过也得跟上 Javascript 这股潮 (hong) 流 (huang) 的脚步,所以便有了下面这篇文章。大概的浅尝了一下这个自称是又快又可信赖又安全的包管理,所以写的内容不会很详细,更多的可能只是针对这个全新的包管理与 npm ……继续阅读 » 开心洋葱 8年前 (2017-02-07) 2437浏览 0评论1701个赞