我正在使用 jquery validate.js 在我的 jquery 移动应用程序中验证我的联系表单。当我通过 url 加载页面或页面刷新时,验证似乎工作得很好。但是,当我从另一个刷新的页面链接返回联系表单时,验证将停止工作。
它在我刷新页面时起作用。我尝试了以下方法:
1)在jquery mobile js之前包括contact.js。
2) data-ajax="false"
;
3)使用bind
$(document).bind("mobileinit", function(){
$.extend( $.mobile , { ajaxEnabled: false });
});
5)使用window.onload
window.onload = function() {
if(!window.location.hash) {
window.location = window.location + '#loaded';
window.location.reload();
}
}
5) Jquery-Mobile:如何重新加载/刷新内部页面
6)第一页加载后的一次页面刷新 Javascript 仅在 jQuery 移动页面刷新时工作
但是这些不起作用。我需要做的是在导航到页面时刷新页面一次。这是我使用 jquery mobile 的联系表单代码。
<form method="post" action="" id="feedback" name="feedback">
<input type="text" name="user_name" data-role="none" id="name" value="" placeholder= "Your name*" />
<br />
<input class="email" required="true" type="text" name="user_email" data-role="none" id="email" value="" placeholder="Your Email*" />
<br />
<textarea cols="70" rows="12" class="required" name="user_message" id="c_message" data-role="none" placeholder="Your message*">
</textarea>
<br />
<input type="submit" value="Send" data-mini="true" data-role="none" data-inline="true" class="green_like" id="send" />
</form>
这是位于“联系我们”表单中的 JS 代码。
$(document).bind("pageinit",function(){
$("#feedback").validate({
submitHandler : function() {
$.ajax({
type:'POST',
url :'/some/url',
data: $('#feedback').serialize(),
success: function(resp) {
if(resp==1)
{
$("#success_post_contact").html('<label style="color:green;margin-left: 6px;" >Thank you for contacting us.</label>');
}
}
});//end of ajax
}//end of submit handler
});//end of validate
});//end of document.bind