常用的JS事件
文本焦点事件:
//onBlur:当失去输入焦点后产生该事件
//onFocus:当输入获得焦点后,产生该文件
//Onchange:当文字值改变时,产生该事件
//Onselect:当文字加亮后,产生该文件
例:
Html代码
1.<input type="text" value="输入内容" onfocus="if(value=='输入内容') {value=''}" onblur="if (value=='') {value='输入内容'}"> //点击时文字消失,失去焦点时文字再出现
2.<input type="text" name="key" size="12" value="关键字" onFocus=this.select() onMouseOver=this.focus()> //鼠标移动到文本上方时,获取焦点并使文本值处选中状态