gpt4 book ai didi

jquery - jquery 上的绑定(bind)和触发函数

转载 作者:行者123 更新时间:2023-12-01 02:41:15 26 4
gpt4 key购买 nike

<script>
$(".box").bind("update",function(txt){
alert(txt);
});


$(".box").trigger("update","Test text");
</script>


<div class="box" style="width:100px;">Nothing to say</div>

我想要:提醒“测试文本”。

我得到:警报“[object Object]”

出了什么问题?

http://jsfiddle.net/d5rdz71t/1/

最佳答案

event handler 的第一个参数是事件对象,因此接受数据作为第二个参数

$(".box").bind("update", function(event, txt) {
alert(txt);
});

$(".box").trigger("update", "Test text");
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script>
<div class="box" style="width:100px;">Nothing to say</div>

关于jquery - jquery 上的绑定(bind)和触发函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30324908/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com