이게 뭐가 문제 야?
HTML :
<form action="http://localhost:8888/bevbros/index.php/test" method="post" accept-charset="utf-8" id="cpa-form" class="forms">
<input type="text" name="zip" value="Zip code" id="Zip" class="required valid">
<input type="submit" name="Next" value="Submit" class="forms" id="1">
</form>
jQuery :
$("#cpa-form").submit(function(e){
e.preventDefault();
});
답변
이 시도:
$("#cpa-form").submit(function(e){
return false;
});
답변
새로운 “on”이벤트 구문을 사용하십시오.
$(document).ready(function() {
$('form').on('submit', function(e){
// validation code here
if(!valid) {
e.preventDefault();
}
});
});
인용 : https://api.jquery.com/on/
답변
위의 답변이 모두 정확하다고 생각하지만이 submit
방법이 작동하지 않는 이유를 지적 하지는 않습니다.
음, submit
jQuery를이 얻을 수없는 경우 방법이 작동하지 않습니다 form
요소를, 그리고 jQuery를 그것에 대해 오류를 제공하지 않습니다. 스크립트가 문서의 헤드에 있으면 코드 DOM
가 준비된 후에 실행하십시오 . 따라서 $(document).ready(function () { // your code here // });
문제를 해결할 것입니다.
가장 좋은 방법은 항상 스크립트를 문서의 맨 아래에 두는 것입니다.
답변
이것은 고대의 질문이지만 여기서 받아 들여지는 대답은 실제로 문제의 근원에 도달하지는 않습니다.
이 두 가지 방법으로 해결할 수 있습니다. 먼저 jQuery를 사용하십시오.
$(document).ready( function() { // Wait until document is fully parsed
$("#cpa-form").on('submit', function(e){
e.preventDefault();
});
}
또는 jQuery가 없으면 :
// Gets a reference to the form element
var form = document.getElementById('cpa-form');
// Adds a listener for the "submit" event.
form.addEventListener('submit', function(e) {
e.preventDefault();
});
return false
이 문제를 해결하기 위해 사용할 필요는 없습니다 .
답변
$('#cpa-form input[name="Next"]').on('click', function(e){
e.preventDefault();
});
답변
$(document).ready(function(){
$("#form_id").submit(function(){
return condition;
});
});
답변
귀하의 코드는 괜찮습니다. 준비된 함수 안에 배치하면됩니다.
$(document).ready( function() {
$("#cpa-form").submit(function(e){
e.preventDefault();
});
}