使用jQuery的剑道开关更改事件

时间:2018-08-27 13:51:35

标签: javascript jquery kendo-ui

有什么方法可以通过jquery获取kendo开关的Change事件吗?

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

以下内容无效:

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

1 个答案:

答案 0 :(得分:1)

对于动态元素,您应该这样使用

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