慚愧,剛學會~~
?
<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,''))">