从链接执行 Jquery POP

发布于 2024-10-17 22:38:49 字数 416 浏览 3 评论 0原文

我有一个来自 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 技术交流群。

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

发布评论

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

评论(1

海夕 2024-10-24 22:38:49

你应该能够做到:

$( "#create-user" ).click(function() { $( "#dialog-form" ).dialog( "open" ); });

并且它会起作用。 $("#create-user") 选择您的元素,然后执行 .click() 将单击操作绑定到该元素。

You should be able to do:

$( "#create-user" ).click(function() { $( "#dialog-form" ).dialog( "open" ); });

And it'll work. $("#create-user") selects your element, and then doing .click() binds the click action to that element.

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