使用 JQuery 线索提示锚点传递参数
我是第一次使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以向名为“userid”的元素添加任意属性,并在需要时将其从锚对象中取出。
You could add an arbitrary attribute to the element called 'userid' and get it out of the anchor object when you need it.