当前位置: 首页 > 图文教程 > 网络编程 > Javascript > 可以编辑的Select (第二版)

Javascript
用jquery ajax获取网站Alexa排名的代码
jQuery Selectors(选择器)的使用(九、表单对象属性篇)
javascript 数组使用方法汇总
用于CSS代码压缩与格式化的javascript函数代码
ExtJS下grid的一些属性说明
javascript 强制刷新页面的实现代码
js 加载并解析XML字符串的代码
jquery提示 "object expected"的解决方法
页面中iframe相互传值传参
jQuery 行背景颜色的交替显示(隔行变色)实现代码
魔方在线秒表javascript版
JavaScript 字符串与数组转换函数[不用split与join]
javascript与asp.net(c#)互相调用方法
javascript下搜索子字符串的的实现代码(脚本之家修正版)
JQuery下关于$.Ready()的分析
input 日期选择功能的javascript代码
js 页面传参数时 参数值含特殊字符的问题
读取table内容的javascript代码
最简单的javascript对象实例代码
JQuery Tips(2) 关于$()包装集你不知道的

Javascript 中的 可以编辑的Select (第二版)


出处:互联网   整理: 软晨网(RuanChen.com)   发布: 2009-08-10   浏览: 253 ::
收藏到网摘: n/a

观看效果

<script src="editableselect.js"></script>
<select id="EditableSelect">
<option>可以编辑的select第二版</option>
<option>Bencalie制作</option>
</select>

=======================
editableselect.js

window.onload=function(){
 var objSelect=EditableSelect
 var obj=document.all.EditableSelect
 getTop=obj.offsetTop;
 getLeft=obj.offsetLeft;
 while(objSelect=objSelect.offsetParent){
 getTop+=objSelect.offsetTop;
 getLeft+=objSelect.offsetLeft;
 }

 var oNewItem=document.createElement("OBJECT"); 
 document.body.insertBefore(oNewItem);
 oNewItem.outerHTML="<object id=editable style=\"z-index:2;position:absolute\" type=\"text/x-scriptlet\" data=\"addin2.htm\"></object>";

 editable.style.left=getLeft+1
 editable.style.top=getTop+1
 editable.style.width=obj.offsetWidth-19
 editable.style.height=obj.offsetHeight-3
 
 obj.onchange=function(){editable.str(obj.options[obj.selectedIndex].text)}
 obj.onresize=function(){editable.style.width=obj.offsetWidth-19}
}

function addNewOption(value){
 EditableSelect.options[EditableSelect.length]=new Option(value,value)
}

=======================
addin2.htm

<script language="vbs">
function public_str(theStrIn)
 strIn.value=theStrIn
end function
</script>
<body leftmargin=0 topmargin=0>
<script language="javascript">
function check(){
var obj=parent.document.all.EditableSelect
var theValue=document.all.strIn.value.replace(/^\s*/g,"").replace(/\s*$/g,"")
if(event.keyCode==13){
if(theValue!=""){
for(i=0;i<obj.length;i++)
 if(obj.options[i].text==theValue){
  alert("该选项已经存在!");
  document.all.strIn.focus();
  document.all.strIn.value="";
  return;
 }
parent.addNewOption(theValue) 
}
document.all.strIn.value=""
}
}
</script>
<input id=strIn style='border:0;width:100%;height:100%;padding-top:2px' onkeydown=check()>
</body>