原文链接:http://bbs.51cto.com/thread-1098421-1-1.html
目标处理函数为selectAttr(test)
1.直接传递给定参数如:
onclick="selectAttr('1');
onclick="selectAttr('a');
2.传递某属性值
<input type="text" id="nameId" name="typeName">
onclick="selectAttr(typeName.value);
onclick="selectAttr(nameId.value);
3.传递this对象
onclick="selectAttr(this);
通过this对象获取对应选项值:this.value or this.name;
如果是自定义属性可以通过以下方式获取:
document方式获取:
var divs=document.getElementById("typeName1");
var x=divs.getAttribute("code");
code为自定义属性。
jqery方式获取:
$("#typeName").attr("value");
var typeName=$("#sel").find("option:selected").attr("code");