有什么方法可以通过jquery获取kendo开关的Change事件吗?
<input type="checkbox" id="tst" aria-label="Notifications Switch" />
以下内容无效:
$("#tst").change(function(){
alert("works");
});
答案 0 :(得分:1)
对于动态元素,您应该这样使用
$(document).on('change',"#tst",function(){
alert("works");
});