javascript – 使用jquery进行Kendo切换更改事件

有什么办法,用
jquery获取kendo开关的Change事件?

<input type="checkbox" id="tst" aria-label="Notifications Switch"  />

以下不起作用:

$("#tst").change(function(){
 alert("works");
});

最佳答案 对于动态元素,你应该像这样使用

$(document).on('change',"#tst",function(){
 alert("works");
});
点赞