2013年1月23日

摘要: <html> <head> <title>js select</title> <script> /*移除左边选中的列表项到右边*/ function fMoveSelectedOptionsLeftToRight(oLeft,oRight) { if(!(oLeft&&oRight)) { return; } if(!hasOptions(oLeft)) { return; } if(oLeft.selectedIndex==-1) { oLeft.selectedIndex=0; } for(var i=0;i< 阅读全文
posted @ 2013-01-23 12:33 滴墨成伤 阅读(930) 评论(0) 推荐(0) 编辑
 
摘要: 清空select的项Html 代码[javascript] view plaincopyprint?1.//document.all.objSelect.options.length=0; 1. // document.all.objSelect.options.length = 0; 如果留下第一行的话就是 Html 代码 [java] view plaincopyprint?document.all.objSelect.options.length=1;document.all.objSelect.options.length = 1; 判断select选项中 是否存在Value=... 阅读全文
posted @ 2013-01-23 12:03 滴墨成伤 阅读(450) 评论(0) 推荐(0) 编辑