asp.netページのcodebehindページから4のJavaスクリプト関数を呼び出す必要があります.3つのjavascript関数でうまく動作しますが、4番目の検証関数が追加されます。検証機能は動作しますが、他の機能は動作しません。私は、ボタンをクリックするとcodebehindから複数のjavascript関数を呼び出す必要があります。それは3つのjavascript関数が正常に動作しますが、それ以上のものはありません
これは機能します!
btnSubmit.OnClientClick = "return Getprodsize('" + hdnprdsize.ClientID + "');return formatSpecifications('" + hdnSpecifications.ClientID + "');return Getselectedvalue('" + hdndrop.ClientID + "')";
このdoesntの仕事...
btnSubmit.OnClientClick = "return Validate();Getprodsize('" + hdnprdsize.ClientID + "');return formatSpecifications('" + hdnSpecifications.ClientID + "');return Getselectedvalue('" + hdndrop.ClientID + "')";
function Validate() {
var existing = $("#ctl00_contentMain_lblProductleft").text();
if ($('#ctl00_contentMain_txtProductName').val() == '') {
$('#ctl00_contentMain_txtProductName').focus().css("border-color", "red");
return false;
}
if ($('#ctl00_contentMain_Txtbrandname').val() == '') {
$('#ctl00_contentMain_Txtbrandname').focus().css("border-color", "red");
return false;
}
if ($('#ctl00_contentMain_Txtstock').val() == '') {
$('#ctl00_contentMain_Txtstock').focus().css("border-color", "red");
return false;
}
if ($('#ctl00_contentMain_Txtprice').val() == '') {
$('#ctl00_contentMain_Txtprice').focus().css("border-color", "red");
return false;
}
if ($('#ctl00_contentMain_txtShortDescription').val() == '') {
$('#ctl00_contentMain_txtShortDescription').focus().css("border-color", "red");
return false;
}
if ($('#ctl00_contentMain_txtLongDescription').val() == '') {
$('#ctl00_contentMain_txtLongDescription').focus().css("border-color", "red");
return false;
}
if ($('#ctl00_contentMain_ddlbcatgory option:selected').val() == 0) {
alert("Please Select Catagory");
return false;
}
if ($('#ctl00_contentMain_txtdeleverycharge').val() == 0) {
$('#ctl00_contentMain_txtdeleverycharge').focus().css("border-color", "red");
return false;
}
var txval = $('input[name=optradio]:checked').val();
$('#<%=hdnTax.ClientID%>').val(txval);
return true;
}
ありがとうございます。 – Adam
これで問題が解決する場合は、チェックマークをクリックして回答を受け入れる必要があります。 – Barmar