在焦点上使字段清晰

时间:2013-08-05 12:27:19

标签: jquery jquery-plugins

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

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

并在html中

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

谢谢!

1 个答案:

答案 0 :(得分:5)

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

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