這是我的javascript獲得另外2個文本框2個值的進入第三....JavaScript來在asp.net文本框添加2號,不工作
其不工作...
<script type="text/javascript">
function calculate(ctrl1, ctrl2, ctrl3) {
var c1 = document.getElementById(ctrl1);
var c2 = document.getElementById(ctrl2);
var c3 = document.getElementById(ctrl3);
if (c1 != null && c2 != null & c3 != null) {
c3.value = Number(c1.value) + Number(c2.value);
}
document.forms[0].txteanum.focus();
}
</script>
在文本框中
<asp:TextBox ID="txtQuantity" runat="server" onblur='javascript:calculate("txtQuantity","txtRate","TxtAmount")'></asp:TextBox>
檢查我的答案在這裏https://stackoverflow.com/a/11624756/1445836
是資本的 「T」 的Java腳本'一錯字? (其他字段中的小寫字母「t」。)如果瀏覽器中的查看源代碼是那些實際從ASP代碼生成的ID? – nnnnnn 2012-07-23 12:21:07
什麼是txteanum? – codingbiz 2012-07-23 12:24:58
你能寫一個else部分,並把一個alert/console.log來查找這些文本框中的任何一個是否爲空? – naveen 2012-07-23 12:26:19