兩個輸入框只允許一個輸入
txtRegisterCode.Attributes.Add("onkeypress", "ClearInput(this);");
txtSupplierName.Attributes.Add("onkeypress", "ClearInput(this);");
function ClearInput(inputingControl)
{
var prefix = "ctl00_ContentPlaceHolder1_";
var txtRegisterCode = document.getElementById(prefix+'txtRegisterCode');
var txtSupplierName = document.getElementById(prefix+'txtSupplierName');
if(txtRegisterCode==inputingControl)
{
txtSupplierName.value="";
}
if(txtSupplierName==inputingControl)
{
txtRegisterCode.value="";
}
}
txtSupplierName.Attributes.Add("onkeypress", "ClearInput(this);");
function ClearInput(inputingControl)
{
var prefix = "ctl00_ContentPlaceHolder1_";
var txtRegisterCode = document.getElementById(prefix+'txtRegisterCode');
var txtSupplierName = document.getElementById(prefix+'txtSupplierName');
if(txtRegisterCode==inputingControl)
{
txtSupplierName.value="";
}
if(txtSupplierName==inputingControl)
{
txtRegisterCode.value="";
}
}
浙公网安备 33010602011771号