gpt4 book ai didi

jquery - 调用Jquery函数

转载 作者:行者123 更新时间:2023-12-03 22:00:55 24 4
gpt4 key购买 nike

我有一个如下所示的 Jquery 函数

function myFunction(){  
$.messager.show({
title:'My Title',
msg:'The message content',
showType:'fade',
style:{
right:'',
bottom:''
}
});
}

如果某些条件为真,我想调用myFunction并且将显示一条弹出消息。如何调用 myFunction?这样它就会像 onClick() 一样。

最佳答案

单击某个 html 元素(控件)时调用该函数。

$('#controlID').click(myFunction);

您需要确保在绑定(bind)事件的 html 元素准备就绪时绑定(bind)事件。您可以将代码放在 document.ready 中

$(document).ready(function(){
$('#controlID').click(myFunction);
});

您可以使用匿名函数将事件绑定(bind)到 html 元素。

$(document).ready(function(){
$('#controlID').click(function(){
$.messager.show({
title:'My Title',
msg:'The message content',
showType:'fade',
style:{
right:'',
bottom:''
}
});
});
});

如果你想将点击与许多元素绑定(bind),你可以使用类选择器

$('.someclass').click(myFunction);

根据OP的评论进行编辑,如果你想在某种条件下调用函数

可以使用if来进行条件执行,例如

if(a == 3)
myFunction();

关于jquery - 调用Jquery函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15918610/

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