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('')代わりに 使用する $(this).val()='';

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