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