JS代码时间格式与时间戳的相互转换 一.时间转换时间戳function transdate(endTime){var date=new Date();date.setFullYear(endTime.substring(0,4));date.setMonth(endTime……继续阅读 » 水墨上仙 4年前 (2021-04-07) 2779浏览 1780个赞
JavaScript添加到收藏夹和设置为主页的代码,网站上经常用到的两个功能// JavaScript Document// 加入收藏 < a onclick="AddFavorite(window.location,document.title)" >加入收藏< /a>function AddFav……继续阅读 » 水墨上仙 4年前 (2021-04-07) 1241浏览 232个赞
JavaScript SHA512加密算法详细代码/* * A JavaScript implementation of the Secure Hash Algorithm, SHA-512, as defined * in FIPS 180-2 * Version 2.2 Copyright Anonymous Contributor, Pau……继续阅读 » 水墨上仙 4年前 (2021-04-07) 1912浏览 1934个赞
JavaScript SHA-256加密算法详细代码/* * A JavaScript implementation of the Secure Hash Algorithm, SHA-256, as defined * in FIPS 180-2 * Version 2.2 Copyright Angel Marin, Paul Johnsto……继续阅读 » 水墨上仙 4年前 (2021-04-07) 3001浏览 407个赞
JavaScript SHA1加密算法实现详细代码/* * A JavaScript implementation of the Secure Hash Algorithm, SHA-1, as defined * in FIPS 180-1 * Version 2.2 Copyright Paul Johnston 2000 - 2009. ……继续阅读 » 水墨上仙 4年前 (2021-04-07) 1578浏览 1048个赞
当鼠标在图片上方时,图片停止漂浮,点击关闭按钮可隐藏图片,代码简单,直接插入网页更换成自己的漂浮图片就可以使用。<body><div id="float" style=" position:absolute; z-index:3"><img id="img1"……继续阅读 » 水墨上仙 4年前 (2021-04-07) 1728浏览 821个赞
JavaScript检测浏览器cookie是否已经启动,代码稍显复杂,通过写入一个测试cookie判断cookie是否已经启动var dt = new Date(); dt.setSeconds(dt.getSeconds() + 60); document.cookie = "cookietest=1; expires=" +……继续阅读 » 水墨上仙 4年前 (2021-04-07) 1687浏览 1902个赞
在一个网页中同时调用jQuery和prototype会产生冲突,主要是$全局变量冲突,下面这段代码有效的解决了这个问题一定要先引入prototype.js 再引入jquery.js,先后顺序不可错<script src="prototype.js"></script><script src=&quo……继续阅读 » 水墨上仙 4年前 (2021-04-07) 1645浏览 792个赞
要从列表框同时删除多个项目,我们不能从上到下的删除,因为上面的项目每删除一个,下面的项目的索引号就会变化,所以只能从下向上删除,这样就不会出现索引号乱变的问题了。 html代码<table><tr> <td align="cent……继续阅读 » 水墨上仙 4年前 (2021-04-07) 1418浏览 1417个赞
JavaScript里字符串不能直接换行书写,需要使用 \ 符号进行换行,其实这一点非常不方便,不过目前也没有好的办法。var multiStr = "This is the first line \ This is the second line \ This is more... \ http://www.75271.com ……继续阅读 » 水墨上仙 4年前 (2021-04-07) 2439浏览 318个赞
这段代码演示了jQuery通过closest选择器上一级的元素,然后修改其text()内容<!DOCTYPE html><html><head> <meta http-equiv="content-type" content="text/html; charset=UTF……继续阅读 » 水墨上仙 4年前 (2021-04-07) 2138浏览 1726个赞
如果jquery要选择的元素id中带有点符号,在选择时需要在点前面加上两个反斜杠,如:$(“#address\\.street”).text(“Enter this field”);<!DOCTYPE html><html><head> <meta h……继续阅读 » 水墨上仙 4年前 (2021-04-07) 3143浏览 617个赞
jQuery克隆JavaScript对象,下面的代码演示了如何克隆jQuery的对象,也演示了如何克隆JavaScript的对象 jquery中克隆对象可以用// Clone the DIVvar cloned = $('#somediv').clone()……继续阅读 » 水墨上仙 4年前 (2021-04-07) 1565浏览 764个赞
JavaScript给url网址进行encode编码,使用encodeURIComponent即可var myUrl = 'http://www.baidu.com';var myOtherUrl = "http://www.75271.com/index.html?url=" + encode……继续阅读 » 水墨上仙 4年前 (2021-04-07) 2733浏览 1348个赞
这段JS代码用于从数组中移除重复的元素,比如: [‘apple’, ‘orange’, ‘peach’, ‘apple’, ‘strawberry’, ‘orange’] 去重后返回:s [‘apple&……继续阅读 » 水墨上仙 4年前 (2021-04-07) 2527浏览 2005个赞
下面的JS代码,为String对象定义了一个contains方法用于判断字符串是否包含子字符串,非常有用。if (!Array.prototype.indexOf) { Array.prototype.indexOf = function(obj, start) { for (var i = (start || 0), j ……继续阅读 » 水墨上仙 4年前 (2021-04-07) 1688浏览 626个赞
这个功能我们经常用到,将左边列表框的元素移动到右边,或者将右边列表框的元素移动到左边,可以一次性全部移动function listbox_moveacross(sourceID, destID) { var src = document.getElementById(sourceID); var dest = document.getE……继续阅读 » 水墨上仙 4年前 (2021-04-07) 2627浏览 832个赞
这段JS代码可以控制listbox内的元素向上或者向下移动,这个功能非常有用。下面是详细的代码。function listbox_move(listID, direction) { var listbox = document.getElementById(listID); var selIndex = listbox.selec……继续阅读 » 水墨上仙 4年前 (2021-04-07) 2157浏览 2565个赞
通过JS代码对列表框进行全选和反选是经常要操作的,赶紧搜藏这段代码。function listboxSelectDeselect(listID, isSelect) { // http://www.75271.com var listbox = document.getElementById(listID); for(var co……继续阅读 » 水墨上仙 4年前 (2021-04-07) 1920浏览 286个赞
如果用户在listbox列表框中选择了多个元素可以通过此JS代码一次性全部删除,非常有用。function selectBoxRemove(sourceID) { //get the listbox object from id. var src = document.getElementById(sourceID); ……继续阅读 » 水墨上仙 4年前 (2021-04-07) 1525浏览 2409个赞
下面的JS代码可以阻止用户点击返回按钮,别问我为什么要阻止用户返回上一页,你懂得。<SCRIPT type="text/javascript"> window.history.forward(); function noBack() { window.history.forward(); }</S……继续阅读 » 水墨上仙 4年前 (2021-04-07) 1219浏览 2972个赞
这段JS代码可以判断出用户是否对表单内容进行了修改,如果修改了表单,并退出浏览器,则会提醒用户是否要保存表单的内容,非常有用的代码,75271.com提供。/** * Determines if a form is dirty by comparing the current value of each element * with its def……继续阅读 » 水墨上仙 4年前 (2021-04-07) 1690浏览 1307个赞
这段代码会在用户点击back向后按钮时提醒用户,如果用户有未保存的数据,使用这个事件非常有用window.onbeforeunload = function() { //http://www.75271.com return "You work will be lost."; };……继续阅读 » 水墨上仙 4年前 (2021-04-07) 2483浏览 906个赞
JavaScript捕获用户退出或者关闭浏览器事件,下面的代码非常有用,如果用户在没有保存信息的情况下要关闭浏览器获取跳转到其它页面,就可以通过这段代码提示用户是否要保存数据。<script language="javascript">function fnUnloadHandler() { // Add……继续阅读 » 水墨上仙 4年前 (2021-04-07) 2813浏览 2888个赞
JavaScript产生1-n之间的随机数,可以任意指定n的大小,js自身的随机数只能产生0-1之间的浮点数,下面的代码通过转换实现1-n之间的随机数生成//random number from 1 to Nvar random = Math.floor(Math.random() * N + 1); //random number from 1……继续阅读 » 水墨上仙 4年前 (2021-04-07) 1204浏览 666个赞
JavaScript中我们可以把根据函数名的字符串来调用函数,这样我们就可以实现动态函数调用,只需要传递一个函数的名字即可调用该函数。var strFun = "someFunction"; //Name of the function to be calledvar strParam = "this is the pa……继续阅读 » 水墨上仙 4年前 (2021-04-07) 1599浏览 321个赞
下面的代码使用了两种方式删除数组的元素,第一种定义一个单独的函数,第二种为Array对象定义了一个removeByValue的方法,调用非常简单 定义函数removeByValue进行元素删除function removeByValue(arr, val) { for(v……继续阅读 » 水墨上仙 4年前 (2021-04-07) 1404浏览 1362个赞
JavaScript通过元素的索引号删除数组中的元素,如果要删除第3个元素,则使用removeByIndex(2)即可,JS数组从0开始function removeByIndex(arr, index) { arr.splice(index, 1);} test = new Array();test[0] = 'Apple&……继续阅读 » 水墨上仙 4年前 (2021-04-07) 2913浏览 432个赞
JavaScript将逗号分割的CSV格式字符串转换成数组,只需要通过split函数按照逗号分割即可。var str = "apple, peaches, oranges, mangoes";//http://www.75271.comvar fruitsArray = str.split(","); ……继续阅读 » 水墨上仙 4年前 (2021-04-07) 1650浏览 1924个赞
JavaScript中数组对象的valueOf方法可以将数组的值输出为逗号分割的字符串,下面的代码演示了如何将数组抓换成逗号和竖线分割的字符串var fruits = ['apple', 'peaches', 'oranges', 'mangoes'];// http:/……继续阅读 » 水墨上仙 4年前 (2021-04-07) 2304浏览 2722个赞
JavaScript将字符串转换成字符编码列表,例如foo转换成 [112,111,111] 方法 1: JavaScript 1.6Array.map('foo', function(x) { retu……继续阅读 » 水墨上仙 4年前 (2021-04-07) 3164浏览 1350个赞
JS中的对象都包含valueOf方法,我们可以通过自定义valueOf函数替换掉原始object的valueOffunction foo() { this.valueOf = function() { return 'this is my value'; }}var bar = new foo();……继续阅读 » 水墨上仙 4年前 (2021-04-07) 1579浏览 2908个赞
实际上就是先设置一个对照的字典,然后通过翻译函数,从字典中找到相应的键值。需要在JavaScript 1.8以上版本使用 函数定义如下function CreateTranslator(translationTable) function(s) s.replace(new Reg……继续阅读 » 水墨上仙 4年前 (2021-04-07) 1209浏览 511个赞
JavaScript生成一个随机字符串,可以指定字符串的长度function RandomString(length) { // http://www.75271.com var str = ''; for ( ; str.length < length; str += Math.random().to……继续阅读 » 水墨上仙 4年前 (2021-04-07) 3149浏览 560个赞
这段JS代码可以对数组内的元素进行随机排列,这个非常有用,比如我们在玩扑克牌的时候可以让扑克牌进行排列,也就是电脑洗牌。var list = [1,2,3,4,5,6,7,8,9];list = list.sort(function() Math.random() - 0.5);// http://www.75271.comPrint(list……继续阅读 » 水墨上仙 4年前 (2021-04-07) 3079浏览 102个赞
例如我们希望输出的数字长度是固定的,假设为10,如果数字为123,则输出0000000123,不够位数就在之前补足0,Sharejs.com提供了三种不同的方式实现JS代码给数字补0 的操作 方法1function PrefixInteger(num, length) { ……继续阅读 » 水墨上仙 4年前 (2021-04-07) 2330浏览 575个赞
这段JS代码可以通过Array.prototype.push.apply方法将一个数组插入到另外一个数组,下面的代码将数组b插入到a// http://www.75271.comvar a = [4,5,6];var b = [7,8,9];Array.prototype.push.apply(a, b);uneval(a); // is: ……继续阅读 » 水墨上仙 4年前 (2021-04-07) 2838浏览 2769个赞
JS代码返回iframe的name属性(名称)<!DOCTYPE html><html><body><iframe id="myframe" src="/default.asp" name="myframe"><p>……继续阅读 » 水墨上仙 8年前 (2017-05-31) 2179浏览 1871个赞