将 jQuery 与 DevExpress 结合使用

发布于 2024-10-03 17:13:54 字数 187 浏览 2 评论 0原文

我试图在也使用 DexExpress 控件的 ASP.NET 网站中包含 jQuery,但无论我如何包含我的脚本,$ 函数始终是匿名 并且jQuery 函数未定义。我怀疑 DevExpress 'plumbing' 脚本正在覆盖 jQuery。

有什么我应该看的吗?

I'm trying to include jQuery in an ASP.NET web site that also uses DexExpress controls, but no matter how I include my script, the $ function is always anonymous and the jQuery function is undefined. I suspect the DevExpress 'plumbing' script is overriding jQuery.

Anything I should be looking at?

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

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

发布评论

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

评论(2

谜兔 2024-10-10 17:13:54

这里的问题是脚本的 URL 解析,而不是冲突。使用数据绑定表达式而不是代码渲染块解决了这个问题。我的母版页摘录:

<head id="Head1" runat="server">
    <title>Smart Computer Solutions</title>
    <script src="<%# ResolveUrl("~/Scripts/jquery-1.4.4.js")%>" type="text/javascript"></script>
</head>

以及隐藏代码:

protected void Page_Load(object sender, EventArgs e)
{
    Page.Header.DataBind();  
}

The problem here was URL resolution for scripts, not a conflict. Using data binding expressions instead of code render blocks solved this issue. Excerpts from my master page:

<head id="Head1" runat="server">
    <title>Smart Computer Solutions</title>
    <script src="<%# ResolveUrl("~/Scripts/jquery-1.4.4.js")%>" type="text/javascript"></script>
</head>

And code-behind:

protected void Page_Load(object sender, EventArgs e)
{
    Page.Header.DataBind();  
}
回忆凄美了谁 2024-10-10 17:13:54

您是否尝试过使用 JQuery.noConflict() ?这允许您将 JQuery 移动到 $ 变量以外的其他位置,并解决像这样的冲突。

Have you tried using JQuery.noConflict()? This allows you to move JQuery to something other than the $ variable and resolves conflicts like this one.

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