我在这里有这个模板复选框。每当单击它时,我都需要调用我的 jquery。我将如何做到这一点我是模板的新手。
script id="listTemplate" type="text/x-jquery-template">
<div class="task_block clearfix modalRow">
<input type="checkbox" class="itemLinked" name="link" data-itemid="${ItemId}" data-itemtype="${ItemType}" data-linkid="${Id}" {{if IsLinked}}checked="checked"{{/if}}>
<div class="left mls">
这就是我的 jquery 中的内容。
$(document).ready(function () {
$("input[name=link]").change(function () {
alert("test");
});
});