当我单击按钮时,我使用了单击处理程序来执行请求。当按钮位于滑块之外时,此事件运行良好。 同样,如果我在滑块上应用点击事件。我尝试了很多方法让它工作,但仍然不明白是什么原因造成的。
像 jquery 步骤这样的 jquery 脚本会影响另一个 jquery 脚本吗?
HTML:
<div id="main">
<div id="slider">
<h3>1</h3>
<section>
<p id="head">I'm using JQuerySteps.</p>
<p id="body"><button type="button">Here is the button.</button></p>
</section>
</div>
</div>
jQuery:
$("button").click(function(){
$("#main").load("get.php", function(responseTxt, statusTxt, xhr){
});
});
问题: 当我尝试在 jquery 步骤 (#slider) 中单击按钮时,单击处理程序不起作用。
我敢肯定这个问题听起来很愚蠢,但我会很感激任何简短的建议或提示。谢谢你,弗拉基米尔。