我必须在ASP.net页面的文本字段中添加默认的灰色文本,如下所示:
当用户点击/输入字段时,默认文本会消失。
如何在文本框事件中执行此操作?
我设法实现onFocus事件以改变文本颜色;在我的.aspx
页面中,我为JS代码创建了一个<script>
标记:
<script type="text/javascript">
function test(obj) {
obj.style.color = "grey";
}
</script>
代码背后:
txtBox.Attributes.Add("OnFocus", "test(this)")
'txtBox is the ID of text Box
现在尴尬地询问关于JavaScript OnFocus事件的非常基本的问题。
但问题是知识的关键:)
编辑:我不能在ASP.Net页面中使用任何HTML标记
有任何帮助吗?感谢。
答案 0 :(得分:2)
尝试使用jQuery
如何实现jQuery:
<script type="text/javascript" src="http://code.jquery.com/jquery-latest.js"></script>
HTML:
<input type="text" />
的CSS:
.grey { color:#aaa; }
jQuery的:
var inputval = "";
$(document).ready(function() {
// Define your default value to show on input
$("input[type='text']").val("Enter your text here...");
// Add grey color or optionally blur effect
$("input[type='text']").addClass('grey');
// Save your default value
inputval = $("input[type='text']").val();
$("input[type='text']").focusin(function() {
// if textbox is empty or got the default value
if ($(this).val() == "" || $(this).val() == inputval) {
// Clear the box
$(this).val("");
// Remove grey color
$(this).removeClass('grey'); }
}).focusout(function() {
// if textbox is empty
if ($(this).val() == "") {
// Put your Default value back
$(this).val(inputval);
// Add grey color
$(this).addClass('grey'); }
});
});
jsfiddle:http://jsfiddle.net/BerkerYuceer/SWc6g/
这实际上是一个非常糟糕的编码,但它应该让你了解它是如何工作的。
编辑:这是更高效的版本
HTML:
<input type="text" />
jQuery的:
$(document).ready(function() {
Watermark("input[type='text']","Enter your text here...");
});
function Watermark(element, WatermarkString) {
$(element).val(WatermarkString).css('color','#aaa');
$(element).focusin(function() {
if ($(this).val() == "" || $(this).val() == WatermarkString) {
$(this).val("").css('color','#000'); }
}).focusout(function() {
if ($(this).val() == "") {
$(this).val(WatermarkString).css('color','#aaa'); }
});
};
答案 1 :(得分:1)
是否有可能生成这样的东西?
<input type="text" placeholder="Enter your text here..." />
因此,您需要将此placeholder="Enter your text here..."
属性实际添加到<input />
代码。
答案 2 :(得分:1)
这是你的意思吗?
<html>
<head></head>
<body>
<input id="serachbox" type="text" onFocus="initText(this);" />
<script type="text/javascript">
var defaultText = 'Enter your serach here...'
var initText = function(el){
if(el.value == defaultText){
el.value = "";
}
}
var input = document.getElementById('serachbox');
input.value = defaultText;
</script>
</body>
</html>
答案 3 :(得分:1)
我对ASP.NET一无所知,但由于你可以添加一个onfocus监听器,你应该可以做类似的事情:
txtBox.Attributes.Add("Value", "Enter your text here...")
txtBox.Attributes.Add("OnFocus", "updateValue(this)")
txtBox.Attributes.Add("OnBlur", "updateValue(this)")
updateValue函数是:
function updateValue(el) {
if (el.value == el.defaultValue) {
el.value = '';
} else {
el.value = el.defaultValue;
}
}
以上模仿了占位符属性,其中(IMO)是一个令人讨厌的界面功能,应该很少使用。
答案 4 :(得分:1)
我猜您在文本字段中寻找水印效果?
如果是这样,有几种方法可以做到。
1)使用AjaxToolKit图书馆(Watermark Effect Demo Here)
2)使用HTML + CSS + jQuery
<input type="text" id="text1" value="some text"/>
<script type="text/javascript">
$(document).ready(function() {
var tbval = $('#text1').val();
$('#text1').focus(function() { $(this).val('');});
$('#text1').blur(function() { $(this).val(tbval);});
});
</script>
来源: