我想要做的驗證所有的表單字段上提交
if(in_array(all form values) == 'empty') {
這裏基本上是我現在這樣做是經過8個表單輸入值,一個Javascript的Ajax文件,在這個過程中是當前的代碼我是使用
if($("#merchant").val()==='') {
//prevent submit button to sending to the handler page
event.preventDefault();
//popup the alert
$("#response").html("<br/><div class='alert alert-error'>Please enter a Merchant Name</div>");
$("#response").slideDown('slow');
slideout();
$("#loading").fadeOut('slow');
}
但使用此代碼,我必須複製並粘貼每個字段約8次,我寧願做一個數組檢查如果可能的話。
這是可能與JavaScript?如果是的話如何?
可能重複http://stackoverflow.com/questions/237104/array-containsobj-in-javascript) –
看看[這個問題](http://stackoverflow.com/questions/784012/javascript-equivalent-of-phps-in-array)(另外,可能是一個愚蠢)。 – thordarson