如何将INPUT的值保存在变量中?
如何将INPUT的值保存在变量中而不编写大量重复代码?
就像 var input = $(this).val();
完整示例
<div id="form">
1. <input type="text" value="title" />
2. <input type="text" value="value" />
</div>
$(function(){
$('#form input:eq(0)').bind({
focus: function(){
if($(this).val()=='title'){
$(this).val('');
}
},
blur: function(){
if($(this).val() == ''){
$(this).val('title');
}
}
});
$('#form input:eq(1)').bind({
focus: function(){
if($(this).val()=='value'){
$(this).val('');
}
},
blur: function(){
if($(this).val() == ''){
$(this).val('value');
}
}
});
});
How to save the value of INPUT in variable to not to write a lot of duplicate code?
like var input = $(this).val();
full example
<div id="form">
1. <input type="text" value="title" />
2. <input type="text" value="value" />
</div>
$(function(){
$('#form input:eq(0)').bind({
focus: function(){
if($(this).val()=='title'){
$(this).val('');
}
},
blur: function(){
if($(this).val() == ''){
$(this).val('title');
}
}
});
$('#form input:eq(1)').bind({
focus: function(){
if($(this).val()=='value'){
$(this).val('');
}
},
blur: function(){
if($(this).val() == ''){
$(this).val('value');
}
}
});
});
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
我不太确定你在问什么,但这种重构将有助于切换值。编辑:向 html 元素添加默认属性并缩短 jQuery(但仍然可读) http://jsfiddle.net/UmZeZ/< /a>
I'm not exactly sure what you are asking, but this refactoring will work for toggling the value. EDIT: added default attribute to the html elements and shortened jQuery (still readable though) http://jsfiddle.net/UmZeZ/
为了实现你想要的,我建议使用 HTML5
placeholder
属性。借助 Modernizr,我们可以检测浏览器对此功能的支持,并且通过这段简单的代码,我们甚至可以让它在不支持placeholder
的浏览器中正常工作。在这里查看现场演示:http://www.jsfiddle.net/yijian/cTDsL/1
To accomplish what you want, I would suggest using the HTML5
placeholder
attribute. With Modernizr, we can detect browser support for this feature, and with this simple piece of code, we can get it to work even for browsers that do not supportplaceholder
.See a live demo of this here: http://www.jsfiddle.net/yijiang/cTDsL/1
这是我的解决方案。我将工作于任何具有 class="set-default" 的字段
签出 工作示例
这里是代码:
基本上所有具有 set-default 类的字段都会按照您的意愿行事。您始终可以将选择器更改为 $('#form input') 但我认为它没有用。
华泰
Here is my solution. I would work to any field which has class="set-default"
Checkout the working example
Here is the code:
basically all fields which had the class set-default will act as you like. You can always change the selector to $('#form input') but I think it's not useful.
HTH