Как я могу условно задать действие формы с помощью Javascript?

#javascript #php #html

Вопрос:

Я пытаюсь условно установить значение атрибута действия формы в зависимости от того, установлен флажок или нет.

У меня есть следующий код Javascript:

 function validate()  {  var f = document.getElementById("confirmForm");  f.setAttribute('method',"post");  if (document.getElementById('confirmOptionCompare').checked)  {  f.setAttribute('action',"comparison.php");  } else {  {  f.setAttribute('action',"bookConfirm.php");  }  }  }  return true; }  

Я включаю вышесказанное в свой HTML-документ следующим образом:

 lt;script type="text/javascript" src="code/scripts.js"gt;lt;/scriptgt;  

Я пытаюсь запустить его следующим образом, но он не переходит на страницу, на которую мне нужно перейти:

 lt;form id="confirmForm" onsubmit="return validate()"gt;  lt;pgt;Click confirm to go to the next step:lt;/pgt;  lt;button type="submit" name="confirm"gt;Confirmlt;/buttongt; lt;/formgt;  

Флажок, который должен инициировать if, сформулирован следующим образом (в таблице):

 lt;trgt;  lt;tdgt;lt;?php echo $bookingOutput['name']." ".$bookingOutput['surname'];?gt;lt;/tdgt;  lt;tdgt;lt;?php echo $bookingOutput['email']; ?gt;lt;/tdgt;  lt;tdgt;lt;?php echo $bookingOutput['checkIn']." -gt; ".$bookingOutput['checkOut'];?gt;lt;/tdgt;  lt;tdgt;lt;?php echo $bookingOutput['daysStaying']; ?gt;lt;/tdgt;  lt;tdgt;lt;?php echo $bookingOutput['hotel'];?gt;lt;/tdgt;  lt;tdgt;lt;?php echo "R".$dailyRate ?gt;lt;/tdgt;  lt;tdgt;lt;?php echo $confirmationObj-gt;ratePerDay; ?gt;lt;/tdgt;  lt;tdgt;lt;input type="checkbox" name="confirmOptionCompare" id="confirmOptionCompare"/gt;amp;nbsp;lt;/tdgt;  lt;/trgt;  

Флажок является последним параметром выше.

Я не уверен, что делаю здесь неправильно. Любая помощь будет весьма признательна.

Комментарии:

1. Почему JS? Почему бы не перенаправить на сервер?

2. Я все еще новичок и учусь. Я и не подозревал, что это возможно. 😀

Ответ №1:

Ваш код должен работать

В любом случае, вот более простая версия

 document.getElementById("confirmForm").addEventListener("submit",function() {  this.method="post"  this.action = document.getElementById('confirmOptionCompare').checked ? "comparison.php": "bookConfirm.php"; }) 
 lt;form id="confirmForm"gt;  lt;pgt;Click confirm to go to the next step:lt;/pgt;  lt;button type="submit" name="confirm"gt;Confirmlt;/buttongt; lt;/formgt;  lt;input type="checkbox" name="confirmOptionCompare" id="confirmOptionCompare"/gt; 

Тем не менее, вы можете отправить и сделать перенаправление, просто установив заголовок в PHP

 if (isset($_POST["confirmOptionCompare"])) header("location: comparison.php"); die();  

Комментарии:

1. Спасибо! Это сработало идеально.