好的,我正在使用jQuery Mobile 框架,我希望能够将文本或文本区域中的默认值用作帮助文本。但是在焦点上清除文本并保留新输入的值。还要重新聚焦(假设他们再次错误地触摸它)不要再次清除该值。
我包括这些
<script type="text/javascript" src="http://code.jquery.com/jquery-1.5.min.js"></script>
<script type="text/javascript" src="http://code.jquery.com/mobile/1.0a3/jquery.mobile-1.0a3.min.js"></script>
该示例不起作用
将此添加到页面本身:(链接到示例)
<script type="text/javascript">
$('.default-value').each(function() {
var default_value = this.value;
$(this).focus(function() {
if(this.value == default_value) {
this.value = '';
}
});
$(this).blur(function() {
if(this.value == '') {
this.value = default_value;
}
});
});
</script>
这是 HTML(它也在表单标签中)
<!-- Address 2 -->
<div data-role="fieldcontain">
<label for="address-2">Address 2</label>
<input type="text" name="address-2" id="address-2" class="default-value" value="Apt #, Suite #, Floor #" />
</div>