Dreamweaver 中无冲突的 jQuery 代码提示
目前正在评估 Dreamweaver CS 5.5。我很喜欢它 - 但想知道 jQuery 代码提示。
我非常喜欢这个功能,但问题是,我们使用 noConflict() 功能,如下所示:
var $j = jQuery.noConflict();
我想知道是否有一种方法(内置、代码解决方法、黑客,或者可能是某种插件) )这将使代码提示能够拾取 $j() 而不是 $()。
谢谢。
Currently evaluating Dreamweaver CS 5.5. I like much of it - but wondering about the jQuery code hinting.
I like that feature quite a bit, but problem is, we use the noConflict() feature, like this:
var $j = jQuery.noConflict();
I am wondering if there is a way (built-in, code work-around, hack, or perhaps a plugin of some kind) that will enable the code-hinting to pick up $j() as opposed to $().
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
中找到 jQuery 的代码提示 xml 文件
您将在Adobe\Adobe Dreamweaver CS5.5\configuration\CodeHints
您将找到该文档的前几行,您需要将 alias="$" 更改为 alias="$j" 。
You'll find the code hint xml file for jQuery in
Adobe\Adobe Dreamweaver CS5.5\configuration\CodeHints
First few lines of the document you'll find and you need to change alias="$" to alias="$j".