JavaScript
dk19870616
这个作者很懒,什么都没留下…
展开
-
JavaScript加载方式
一.在标签之间加入 表示表示5秒后自动跳转到百度. 二.在标签最下面加入 alert(document.all("a").value); 与Onload函数的效果是一样的原创 2013-05-24 11:00:43 · 88 阅读 · 0 评论 -
javascript 技巧
1.可以通过valueOf()或者Join()函数将数组转换成CSV(符号分割值)。 2.CSV转换成数组可以通过split()函数来进行转换。 3.通过索引删除数组中的值。 function removeByIndex(arr, index) { arr.splice(index, 1); } test = new Array(); test[0]...2013-05-27 16:21:17 · 97 阅读 · 0 评论 -
js对ListBox 全选、反全选、删除选中项、上移、下移
function selectBoxRemove(sourceID) { //get the listbox object from id. var src = document.getElementById(sourceID); //iterate through each option of the ...2013-05-27 17:51:49 · 381 阅读 · 0 评论 -
ListBox左右移动操作(js)
function listboxMoveacross(sourceID, destID) { var src = document.getElementById(sourceID); var dest = document.getElementById(destID); for(var count=0; co...原创 2013-05-27 17:53:03 · 483 阅读 · 0 评论 -
页面加载状态改变银行图标
function loadPictrue(){ for(var i=1;i<18;i++){ document.getElementById("displayCharac"+i).style.display='none'; if(i>4 && i<13){ document.getElementById("displayCharacP"+i...原创 2014-03-07 15:25:53 · 254 阅读 · 0 评论