jgrowl 在 iis5 上

发布于 2024-07-27 16:17:59 字数 128 浏览 6 评论 0原文

由于某种原因,jGrowl 不想在我的 IIS 5(实时)服务器上工作,但在我的 IIS 6(临时)服务器上完美工作。 有其他人遇到过这个问题还是这只是我的设置?

在 iis5 上,我收到“对象不支持此属性或方法”错误

for some reason jGrowl does not want to work on my IIS 5 (live) server, but works perfectly on my IIS 6 (staging) server. has anyone else experienced this problem or is it just my setup?

on iis5 i'm getting an "Object doesn't support this property or method" error

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

鸠书 2024-08-03 16:17:59

jGrowl(和 jQuery)不在服务器上运行,它们在客户端上运行。 因此,我认为你的问题出在其他地方。 您可以备份并尝试以下代码以确保 jQuery 和 jGrowl 正常运行。

$(function(){
  $.jGrowl("I work!");
});

另外,如果您可以发布一个如何使用 jQuery + jGrowl 的简单示例,这也将有助于诊断问题。

你在什么浏览器中测试过这个? 您绝对肯定您在页面中引用了插件源吗? 尝试将代码中的参考源直接复制/粘贴到您的网址中。

jGrowl (and jQuery) don't run on the servers, they run on the clients. Because of that, I'm thinking your problem is elsewhere. You could back up, and try the following code to be sure jQuery and jGrowl are functioning properly.

$(function(){
  $.jGrowl("I work!");
});

Also, if you could post a simple example of how you're using jQuery + jGrowl, that would help diagnose the issue as well.

What browsers have you tested this in? Are you absolutely positive you are referencing the plugin-source in your page? Try copying/pasting the reference source from your code directly into your url.

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