NOD name for VALUE?
I've a few inputs and I want to clear their values after clicking. How to?
<input type="text" value="Name" />
I've tried:
$(this).inputValue("");
But it doesn't work. If I'm unable to change the value, how to add text to the input ($(this).text(""); works very well in, for example, texta开发者_StackOverflowreas).
Thanks!
Use .val(newValue)
for setting the value of any input type element (including <textarea>
and <select>
), like this:
$("input:text").click(function() {
$(this).val("");
});
精彩评论