gpt4 book ai didi

php - Jquery对话框错误

转载 作者:行者123 更新时间:2023-12-02 19:34:09 25 4
gpt4 key购买 nike

我正在使用一个对话框在我的页面上显示和提交查询表单。当我尝试一次又一次调用它时遇到问题。第一次一切正常并且表单提交成功。但是,如果我单击 GO 按钮(在下面添加了 html)。我会收到此行文档的错误。编辑:

<div class="hidden" id="dialog">
<form action="index.php" class="testForm" id="testForm">
<div class="name" id="name">
<div class="displayName" id="dispName">Name</div>
<div class="textName" id="viewName"><input type="text" class="fname" id="fullName" /></div>
<div class="hide" id="nameErr"></div>

</div>
<div class="address" id="addressDetails">
<div class="displayAddress" id="dispAddress">Address</div>
<div class="textAddress" id=""><input type="text" class="taddress" id="fullAddress" /></div>
<div class="hide" id="addressErr"></div>

</div>
<div class="submitForm" ><input type="button" class="submitDetails" id="submitInfo" name="Submit" value="Submit" onClick="validateAndSubmitForm()"/>
<a name="Close" onclick="$('#dialog').dialog('close');">Close</a>
</div>

</form>
</div>

Javascript\jquery

function submitEnquiryForProperty()

{

document.forms.testForm.reset();

$("#dialog").dialog({
modal:true,
resizable:false,
autoOpen:false,
width:260,
});
openDialog();

}

  function openDialog(){
$("#dialog").dialog("open");
}

function closeDialog(){
$("#dialog").dialog("close");
}

表单提交回调函数

$.ajax({
type:'POST',
url:"processForm.php",
data:"name="+name+"&address="+address,
dataType:"html",

success:function(msg){
if(msg=="success"){
$("#dialog", window.parent.document).html("<div class='pad5'><div class='flt' style='padding-left:3px; width:235px;'><div class='thanx_msg'>Thank you for submitting the details. <br /><div class='spacer5'>&nbsp;</div><span class='gre'>Our Sales team shall revert to your query soon.</span></div></div><div class='spacer5'>&nbsp;</div><div style='padding-left:3px;' class='text'><strong>You can also:</strong></div><div style='margin-left:20px; line-height:20px;'>&bull; Apply for a <a href='homeloan.php'>Home Loan</a><br />&bull; Visit <a href='http://www.proptiger.com'>proptiger.com</a> for more properties<br />&bull; See our <a href='http://www.proptiger.com/blog'>Blog</a> for latest updates</div></div><br/><div class='msg' style='color:red;'>Click to close the box</div>");

$(function(){
$('#dialog').click(function() {
closeDialog();
});
});

}
else
{
alert("Operation cannot be completed,please try again");
}
}

但我面临同样的问题。.reset() 行出错。
感谢您的宝贵时间。

最佳答案

更新答案

如果您想要一个可重用的对话框,请这样做:

  1. 在初始 HTML 中包含对话框元素(几乎肯定是 <div> )。使用 CSS 类,使其不会立即可见,例如:

    HTML:
    <div id="dialog" class="hidden">...</div>

    CSS:
    .hidden { display: none }
  2. 无条件调用$("#dialog").dialog(options)页面加载后立即从 Javascript 中获取。一定要设置autoOpen: false在选项中。

  3. 每当您想要显示对话框时,请使用 $("#dialog").dialog("open") .

  4. 每当您想隐藏对话框时,请使用 $("#dialog").dialog("close") .

  5. 根据需要重复步骤 3 和 4。

关于php - Jquery对话框错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11133561/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com