为什么这个插件不起作用? Firebug没有发现任何错误。
(function ($) {
$.fn.clearForm = function () {
return this.each(function () {
$(this).on("focus", function () {
$(this).val() = '';
});
});
};
}(jQuery));
并在html中
<script>
$(this).clearForm();
谢谢!
答案 0 :(得分:5)
使用$(this).val('')
代替$(this).val()='';
试试这个
(function($) {
$.fn.clearForm = function (){
$(this).on("focus",function(){
$(this).val('');
});
};
}( jQuery ));