我该怎么办?
名称如何控制?
如何管理哪些控制电话或哪些控制电话没有?
我的函数如何知道哪个控件叫它?
ps:我不想使用服务器端控件,我只使用客户端站点控件。
答案 0 :(得分:0)
假设您正在使用jQuery
,请将控件动态添加到<div class="controls">
。
然后你可以做类似的事情:
$(".controls").on("click", your_function);
在your_function
:
function your_function(target){
//target would be the control which fires `click` event
//you can assign them different custom attributes
//like <input mid="123" type="text" />
//then get this custom attribute(mid)
var identifier = $(target).attr("mid");
//distinguish them by different identifier
}
此外,如果它涉及select
或file
控件,您还应绑定change
事件以使其更兼容。