标签:style blog http io color ar os sp java
<script type="text/javascript">
window.onload = function () {
var ss = document.getElementById("txt");
ss.onfocus = function () {
this.value = "";
ss.style.color = "black";
}
ss.onblur = function () {
if (this.value.length == 0) {
this.value = "请输入搜所内容";
ss.style.color = "Gray";
}
}
}
</script>
标签:style blog http io color ar os sp java
原文地址:http://www.cnblogs.com/weihua-show/p/4100327.html