模拟点击 jQuery UI 菜单?
我正在尝试模拟 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须在选择器上初始化插件,您使用的是哪个 jquery 菜单插件?
下面是在选择器上初始化 jQuery UI 对话框小部件/插件的示例。
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.