Tipsy Jquery 插件不会加载到另一个 Javascript 中?
我正在使用 JQuery 醉酒插件,我可以让它在我的正常 php 页面上正常工作,但是当我通过另一个 javascript 运行来自 XML 的数据时,它无法加载或正常工作...我已经尝试了所有可以想象的更改/变量,我被困住了。
我所有的 jquery & jquery.tipsy 脚本已正确链接,因为它在此 JS 之外工作。
$(function() {
$('.instructions').tipsy({gravity: 's'});
});
然后,当我在另一个 JS 中调用它时,它根本不会显示:
return "<table cellpadding='8' cellspacing='0'><tr>" +
"<tr>" +
"<td class='mn'>" + vs.manualName + "</td>" +
"<td><a class='instructions' href='#' title='" + vs.manInstr + "'>Instructions</a></td>" +
"<td class='sku'>" + vs.skuNum "</td>" +
"</tr></table>"
};
我必须在 JS 中写出来才能让醉酒的人看到它吗?
I'm working with a the JQuery tipsy plugin and I can get it to work fine on my normal php page but when I run data from XML thru another javascript it's not loading or working properly... I've tried every imaginable change/variable and I'm stuck.
All my jquery & jquery.tipsy scripts are linked correctly because it works outside of this JS.
$(function() {
$('.instructions').tipsy({gravity: 's'});
});
Then when I call it inside the other JS it won't show at all:
return "<table cellpadding='8' cellspacing='0'><tr>" +
"<tr>" +
"<td class='mn'>" + vs.manualName + "</td>" +
"<td><a class='instructions' href='#' title='" + vs.manInstr + "'>Instructions</a></td>" +
"<td class='sku'>" + vs.skuNum "</td>" +
"</tr></table>"
};
Do I have to write it out in the JS for the tipsy to see it?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您必须确保在 Tipsy 被触发时,
.instructions
已经加载并位于 DOM 内。因此,在通过另一个 javascript 加载来自 XML 的数据后,执行。You have to ensure that by the time the Tipsy is fired, the
.instructions
are already loaded and inside the DOM. So after thedata from XML thru another javascript
is loaded, execute.