JQuery读书笔记--JQuery的在线调试

在Firefox中不用编译一个include一个jquery.js就可以在firebug中调试和享受jquey了。
1.将[url]javascript:var%20s=document.createElement('script');s.setAttribute('src',%20'http://jquery.com/src/jquery-latest.js');document.getElementsByTagName('body')[0].appendChild(s);alert('thank you for using jquery!');void(s);[/url]拖到bookmark上。
2.点击这个bookmark
3.你就可以在firebug的console中敲入
$('body').css('background-color','red')
看一看效果了。

你可能感兴趣的:(JavaScript,jquery,Firebug,读书,firefox)