惭愧,刚学会~~
<select onChange="if(this.selectedIndex>0)location.href=this.options[this.selectedIndex].value">
<option value="请选择" selected>你要去的网站</option>
<option value="http://www.jades.cn">中华玉网</option>
<option value="http://www.sina.com.cn/">新浪</option>
</select>
表单输入限制(小结)
只能输入汉字:
<input onkeyup="value=value.replace(/[^\u4E00-\u9FA5]/g,'')" onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\u4E00-\u9FA5]/g,''))">
只能输入数字:
<input onkeyup="value=value.replace(/[^\d]/g,'') "onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\d]/g,''))">
只能输入英文和数字:
<input onkeyup="value=value.replace(/[\W]/g,'') "onbeforepaste="clipboardData.setData('text',clipboardData.getData('text').replace(/[^\d]/g,''))">
posted on 2006-04-28 23:55
船长 阅读(663)
评论(0) 编辑 收藏