jquery .trigger() 似乎不起作用

发布于 2024-11-19 11:21:43 字数 852 浏览 1 评论 0原文

这是我的代码:

$(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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

多情出卖 2024-11-26 11:21:43

您在添加点击处理程序之前触发它,因此您看到的行为非常有意义。将 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文