模拟点击 jQuery UI 菜单?

发布于 2024-11-16 22:19:54 字数 219 浏览 2 评论 0原文

我正在尝试模拟 jQuery UI 菜单上的单击。这不起作用。也许我没有正确引用它?

这对我有用:

 $('#test').click(function(){ console.log('test'); });
 $('#test').click();

这将记录“测试”。但是它不会触发 jQuery UI 菜单。我需要采取任何额外的步骤吗?

I'm trying to simulate a click on a jQuery UI menu. It doesn't work. Maybe I'm not referencing it properly?

This works for me:

 $('#test').click(function(){ console.log('test'); });
 $('#test').click();

This will log 'test'. However it will not trigger the jQuery UI menu. Are there any extra steps I have to take?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

赤濁 2024-11-23 22:19:54

您必须在选择器上初始化插件,您使用的是哪个 jquery 菜单插件?

下面是在选择器上初始化 jQuery UI 对话框小部件/插件的示例。

$('#myDiv').dialog({
    title:'My Dialog'
});

You must initialize the plugin on your selector, which jquery menu plugin are you using?

Here is an example of initializing the jQuery UI Dialog Widget/Plugin on a selector.

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