简体   繁体   中英

PhpStorm jQuery.noConflict() css completion not working

 $('#') // hint a list of id var j = jQuery.noConflict() j('#') // no hint 
 <script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> 

use context as in comments

 <!-- Putting jQuery into no-conflict mode. --> <script src="prototype.js"></script> <script src="jquery.js"></script> <script> var $j = jQuery.noConflict(); // $j is now an alias to the jQuery function; creating the new alias is optional. $j(document).ready(function() { $j( "div" ).hide(); }); // The $ variable now has the prototype meaning, which is a shortcut for // document.getElementById(). mainDiv below is a DOM element, not a jQuery object. window.onload = function() { var mainDiv = $( "main" ); } </script> 

我认为答案是template / auto-expand,就像如果我有一个模板$('jj的名字,那么jj + tab会给我我想要的...不是我输入速度慢,我只是喜欢黑客和即时学习成为一个懒惰的程序员

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM