jquery 与“bstip”一起使用工具提示?
我正在使用 bstip 在我的图像上添加一些不错的工具提示。
我使用 ajax 调用加载图像来获取:
<img src="1.jpg" class="bslink" title="exemple" />
<img src="2.jpg" class="bslink" title="exemple" />
但在使用时
$('.bslink').bstip();
它不起作用。
在这种情况下,如何将“live”与 jQuery 一起使用?
I'm using bstip to have some nice tooltip on my images.
I load my images with an ajax call to get:
<img src="1.jpg" class="bslink" title="exemple" />
<img src="2.jpg" class="bslink" title="exemple" />
but when using
$('.bslink').bstip();
it's not working.
How can I use 'live' with jQuery in this case?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
ajax 响应的输出
,应该可以正常工作
Output
from ajax response and it should work fine
您不需要 .live() 来完成此操作。只需放置 $('.bslink').bstip();在 AJAX 调用的成功方法中。
You don't need .live() to accomplish this. Simply place $('.bslink').bstip(); in your AJAX call's success method.