我正在学习jQuery,并尝试按照此jQuery Tutorial创建一个简单的变色插件,但无法正常工作。
代码如下:
(function ( $ ) {
$.fn.changecolor = function() {
$(this+" .green_btn").click(function() {
$(this+" .green_text").css( "color", "green" );
});
};
}( jQuery ));
jQuery(document).ready(function($){
$("#textchanger").changecolor();
});
为什么无法正常显示错误
未捕获的错误:语法错误,无法识别的表达式:[object Object] .green_btn