0
私はこのスクリプトをjqueryでドロップダウン、テキストボックスを検証することができます。ユーザーがドロップダウンまたはテキストボックスと両方カスタムバリデーションのためのjquery addclass
<script type="text/javascript" language="javascript">
$(document).ready(function() {
$('input[id*=btnSubmit]').click(function() {
var ddlDiscountPercentVal = $('select[id*=ddlMktPercentages] option:selected').val();
var txtDiscountValueVal = $('input[id*=TxtDiscountValue]').val();
if ((ddlDiscountPercentVal == 0 && txtDiscountValueVal == '') || (ddlDiscountPercentVal != 0 && txtDiscountValueVal != 0)) {
alert('please enter a value other than 0 for percentage or enter a value');
return false
}
else
return true;
});
});
今すぐ代わりに警告ボックスで、私は色や誤りの位置との適切なエラーメッセージを表示したくないのいずれかを入力する必要があります。 jqueryバリデーションライブラリを使用する必要があります
ヒント。あなたのお手伝いをありがとう 日