Javascript 文本框 onkeyup 事件
Javascript textbox onkeyup event
Html:
<asp:TextBox ID="phone" " runat="server" AutoCompleteType="Disabled" onkeyup="this.value=this.value.EditPhone()"></asp:TextBox>
Javascript:
String.prototype.EditPhone= function () {
var str = document.getElementById('phone').value;
if (str.substring(0, 1) == "0") // If first value is "0" remove it
str = str.substring(1, str.length);
return str;
};
如果第一个字符串值为 "0".
,我将删除
之后我输入phone号码5552221133等等
如果我将 11 更改为 44 我不能 remove/change 11 并写入新值 (44) 因为 onkeyup值。
如果我 return null 它不再工作。
我如何 remove/change 根据我的代码发短信?
我有
<asp:TextBox ID="phone" " runat="server" AutoCompleteType="Disabled" onkeyup="this.value=this.value.EditPhone()"></asp:TextBox>
Html:
<asp:TextBox ID="phone" " runat="server" AutoCompleteType="Disabled" onkeyup="this.value=this.value.EditPhone()"></asp:TextBox>
Javascript:
String.prototype.EditPhone= function () {
var str = document.getElementById('phone').value;
if (str.substring(0, 1) == "0") // If first value is "0" remove it
str = str.substring(1, str.length);
return str;
};
如果第一个字符串值为 "0".
,我将删除之后我输入phone号码5552221133等等
如果我将 11 更改为 44 我不能 remove/change 11 并写入新值 (44) 因为 onkeyup值。
如果我 return null 它不再工作。 我如何 remove/change 根据我的代码发短信?
我有
<asp:TextBox ID="phone" " runat="server" AutoCompleteType="Disabled" onkeyup="this.value=this.value.EditPhone()"></asp:TextBox>