将 jQuery 与 DevExpress 结合使用
我试图在也使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这里的问题是脚本的 URL 解析,而不是冲突。使用数据绑定表达式而不是代码渲染块解决了这个问题。我的母版页摘录:
以及隐藏代码:
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:
And code-behind:
您是否尝试过使用 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.