ASP.Net TextBox控件只允許輸入 字符

<asp:TextBox ID="txtEnglishName" runat="server" 
Style="ime-mode: Disabled" 
οnkeypress="return !String.fromCharCode(event.keyCode).match(/[^a-zA-Z .]/)" 
οnpaste="return !clipboardData.getData('text').match(/[^a-zA-Z .]/)" 
οndragenter="return false"> 
</asp:TextBox>

Style="ime-mode: Disabled" 禁用了輸入法, 
onkeypress / onpaste 事件檢查了輸入內容,還禁止了 ondragenter 事件。 
效果就是,只可以輸入 大小寫英文字母,以及 . 和 空格。

發表評論
所有評論
還沒有人評論,想成為第一個評論的人麼? 請在上方評論欄輸入並且點擊發布.
相關文章