从链接执行 Jquery POP
我有一个来自 jquery 的脚本,它从按钮执行弹出窗口。我想使用 href 链接,但无法弄清楚这样做的语法。浏览 jQuery 文档,我找不到任何指定我要做什么的内容。
链接是:加入邮件列表
我当前的代码是:$(“#创建用户”) 。按钮() .click(函数() { $( "#dialog-form" ).dialog( "打开" ); });
我假设如果您将 .button()
更改为 .link()
它会起作用,但没有这样的运气。
谢谢你们。
I have a script from jquery that executes a pop up from a button. I want to use a href link instead but can't figure out the syntax to do so. Going through the jQuery documentation I can't find anything specifying what I am try to do.
the link is:<a href="#" class="connect_link" id="create-user">Join the mailling List</a>
The current code i have is:$( "#create-user" )
.button()
.click(function() {
$( "#dialog-form" ).dialog( "open" );
});
I assumed that if you changed .button()
to .link()
it would work but no such luck.
Thanks guys.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
你应该能够做到:
并且它会起作用。
$("#create-user")
选择您的元素,然后执行.click()
将单击操作绑定到该元素。You should be able to do:
And it'll work.
$("#create-user")
selects your element, and then doing.click()
binds the click action to that element.