jquery .trigger() 似乎不起作用
这是我的代码:
$(document).ready(function () {
//alert("wa");
$("#wis").trigger('click');
$("#wis,#wib").click(function (){
alert("clciked");
if(!$(this).hasClass("dealsb")) {
$(".dealb").removeClass("dealsb");
$(this).addClass("dealsb");
var id=$(this).attr("id");
$.post("deals.php",{'req':id},function(data){
//alert("works");
$("#deals").html(data);});
}
});
});
</script>
<div id='wib' class='dealb'>What I've Purchased</div><div id='wis' class='dealb'>What I've Sold</div>
<div id="deals" style='position:absolute;left:0px;top:100px;width:600px;height:300px'></div>
这里 $("#wis").trigger('click');
似乎不起作用。当我点击 #wis
或 #wib
时,警报就会被触发,一切都会完美运行。
This is my code :
$(document).ready(function () {
//alert("wa");
$("#wis").trigger('click');
$("#wis,#wib").click(function (){
alert("clciked");
if(!$(this).hasClass("dealsb")) {
$(".dealb").removeClass("dealsb");
$(this).addClass("dealsb");
var id=$(this).attr("id");
$.post("deals.php",{'req':id},function(data){
//alert("works");
$("#deals").html(data);});
}
});
});
</script>
<div id='wib' class='dealb'>What I've Purchased</div><div id='wis' class='dealb'>What I've Sold</div>
<div id="deals" style='position:absolute;left:0px;top:100px;width:600px;height:300px'></div>
Here $("#wis").trigger('click');
doesn't seem to work. When I click #wis
or #wib
though, the alert gets fired off and everything runs perfectly.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在添加点击处理程序之前触发它,因此您看到的行为非常有意义。将
trigger
移至标记的末尾,您应该已设置完毕。
You're triggering it before you add the click handler, so the behavior you're seeing makes perfect sense. Move the
trigger
to the end of your<script>
tag and you should be set.