首页 > 代码库 > 让你的chrome开发工具console支持jquery

让你的chrome开发工具console支持jquery

首先执行以下代码:

;(function(d,s){d.body.appendChild(s=d.createElement(script)).src=http://www.mamicode.com/http://code.jquery.com/jquery-1.9.1.min.js})(document);

 

 然后执行像下面的代码就不会出现$未定义的错误了:

技术分享
setInterval(function()( {  $(".honor_button").click();}, 1000);
View Code

 

让你的chrome开发工具console支持jquery