Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我希望在将鼠标悬停在动态加载的 id 的锚标记上时显示 Jquery 工具提示。
使用 Jquery 提示
尝试这样的事情
$(document).ready(function(){ loadtip(); }); function loadtip() { $('a.tips').cluetip({ showTitle: true , arrows: true }); }
加载动态内容后再次调用此函数:
$(document).ready(function(){ loadtip(); });