使用 JQuery 线索提示锚点传递参数

发布于 2024-08-10 21:29:35 字数 663 浏览 3 评论 0原文

我是第一次使用 JQuery,需要帮助。

当我点击一个锚标签时,它会调用一个 html div 并显示一个弹出窗口(JqueryCluetip 插件),

<a class="tips" href="#kt" rel="#kt" title="Kate Thompson">more info...</a>

我有这个提示功能:

$(document).ready(function() {
$('a.tips').cluetip({
    cluetipClass: 'rounded',
    dropShadow: false,
    showtitle: false,
    positionBy: 'mouse',
    local: true,
    hideLocal: false,
    sticky: true,
    width: 410,
    closeText: 'Close'
});   

});

现在我的问题是我想将名为 userid 的参数传递给锚标记,以便弹出窗口根据输入参数显示不同的数据。 (基本上我必须将该 id 传递给支持 bean 并获取该 id 的相应用户详细信息并将其显示在弹出窗口中。) 请让我知道如何执行此任务。

I am using JQuery for the first time and need help.

When i click on a anchor tag it calls a html div and shows up a popup(JqueryCluetip Plugin)

<a class="tips" href="#kt" rel="#kt" title="Kate Thompson">more info...</a>

I have this cluetip function:

$(document).ready(function() {
$('a.tips').cluetip({
    cluetipClass: 'rounded',
    dropShadow: false,
    showtitle: false,
    positionBy: 'mouse',
    local: true,
    hideLocal: false,
    sticky: true,
    width: 410,
    closeText: 'Close'
});   

});

Now my question is i want to pass parameter called userid to the anchor tag so that the popup shows differnet data based on input paramter. (Basically i have to pass that id to a backing bean and get the corresponding user details for that id and show it up in the popup.)
Please let me know how can i perform this task.

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

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

发布评论

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

评论(1

浪菊怪哟 2024-08-17 21:29:35

您可以向名为“userid”的元素添加任意属性,并在需要时将其从锚对象中取出。

You could add an arbitrary attribute to the element called 'userid' and get it out of the anchor object when you need it.

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