作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
使用this jQuery shiftbox plugin插件或this one .
JS
for (var hidx in hosts) {
var h = hosts[hidx];
var line_html = '<tr><td><input type="checkbox" class="input shiftCheckbox" value = "'+ hidx +'" data-fullname="'+ h +'"></input></td><td>' + h + '</td> </tr>';
tbody_hosts.append($(line_html));
}
这是动态生成的。
HTML 格式
<script src="/static/js/jquery.shiftcheckbox.js" type= "text/javascript" ></script>
<script type= "text/javascript" >
$(document).ready (function() {
$('.shiftCheckbox').shiftcheckbox();
});
</script>
为什么不起作用?因为它是动态的?
最佳答案
您需要在附加元素后附加事件,因为您无法委托(delegate)大多数 jquery 插件:
for (var hidx in hosts) {
var h = hosts[hidx];
var line_html = '<tr><td><input type="checkbox" class="input shiftCheckbox" value = "'+ hidx +'" data-fullname="'+ h +'"></input></td><td>' + h + '</td> </tr>';
tbody_hosts.append($(line_html));
tbody_hosts.find('.shiftCheckbox').shiftcheckbox();
}
关于javascript - 如何将shiftcheckbox添加到动态生成的复选框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31959582/
我是一名优秀的程序员,十分优秀!