Tipsy Jquery 插件不会加载到另一个 Javascript 中?

发布于 2024-12-06 08:21:55 字数 714 浏览 1 评论 0原文

我正在使用 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 技术交流群。

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

发布评论

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

评论(1

苍风燃霜 2024-12-13 08:21:55

您必须确保在 Tipsy 被触发时,.instructions 已经加载并位于 DOM 内。因此,在通过另一个 javascript 加载来自 XML 的数据后,执行。

    $('.instructions').tipsy({gravity: 's'});

You have to ensure that by the time the Tipsy is fired, the .instructions are already loaded and inside the DOM. So after the data from XML thru another javascript is loaded, execute.

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