如何使用jquery设置表单输入值?
我试图为表单输入提供一个默认值,当用户单击输入框时该默认值会发生变化。
我怎样才能使用 jquery 做到这一点?
$(document).ready(function() {
$('#tradition').click(function() {
$('#form-container').attr("class","trade");
$('.lblMadlib11').text("Eleven ");
$('.lblMadlib11a').val("eleven value field");
});
我可以使用/将焦点添加到焦点上名为“lblMadlib11a”的字段的现有代码来删除默认值吗?
I am trying to give the form input a default value which changes when the user clicks on the input box.
How can I do this using jquery?
$(document).ready(function() {
$('#tradition').click(function() {
$('#form-container').attr("class","trade");
$('.lblMadlib11').text("Eleven ");
$('.lblMadlib11a').val("eleven value field");
});
Ho can I use / add focus to the existing code for the field called "lblMadlib11a" on focus to remove the default value.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
假设您有这样的输入文本:
您可以这样设置空值
suppose you have an input text like this:
You could set empty value in this way