0

为什么这个插件不起作用?Firebug 没有发现任何错误。

(function ($) {
    $.fn.clearForm = function () {
        return this.each(function () {
            $(this).on("focus", function () {
                $(this).val() = '';
            });
        });
    };
}(jQuery));

并在 html

<script>
$(this).clearForm();

谢谢!

4

1 回答 1

5

使用 $(this).val('')instread $(this).val()=''; 试试这个

(function($) {
    $.fn.clearForm = function (){          
            $(this).on("focus",function(){
                $(this).val('');
            });            
    };
}( jQuery ));
于 2013-08-05T12:28:21.537 回答