作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有 2 个页面,主页面有一个按钮 id 的单击操作,该操作是从另一个页面“1.php”加载的。点击作业不起作用。主文件:
<script type="text/javascript">
$(document).ready(function () {
$("#t").load("1.php");
$("#s").click(function () {
alert($("Done!");
});
});
</script>
<div id="t"></div>
这是 1.php:
echo '<input type="button" value="go" id="s">';
有什么想法吗?
最佳答案
使用事件委托(delegate):
$("#t").on("click", "#s", function() {
您的处理程序在运行时被绑定(bind),并且此时您的按钮不在 DOM 中。
关于jquery - 如何对加载的按钮应用单击操作,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/22174929/
我是一名优秀的程序员,十分优秀!