4
我有一個模式窗體,用戶可以重置其密碼。關閉時重置模態對話框
<div id="password-form" title="Reset Password">
<form method="post">
<fieldset>
<label for="emailreset">Enter Email Address</label>
<input type="text" name="emailreset" id="emailreset" class="text ui-widget-content ui-corner-all" />
</fieldset>
</form>
</div>
當用戶點擊重置密碼按鈕時,我調用一個函數來檢查用戶是否存在。 在發佈成功後,我將div的內容更改爲生成的消息。 所有這些都按預期工作。現在我想要發生的事情是一旦關閉了模式對話框,我想讓內容重置回表單。發生這種情況我遇到了問題。我已經嘗試了不同的東西,但它沒有任何幫助,將不勝感激。
這裏就是我對jQuery的提前
$("#password-form").dialog({
autoOpen: false,
height: 200,
width: 300,
modal: true,
buttons: {
"Reset Password": function() {
$.ajax({
url: "/model/websitemanager.cfc"
, type: "post"
, dataType: "html"
, data: {
method: "resetpassword"
, emailreset: $("#emailreset").val()
}
, success: function (data){
//alert(data);
$('#password-form').html('<p>'+data+'</p>');
}
// this runs if an error
, error: function (xhr, textStatus, errorThrown){
// show error
alert(errorThrown);
}
});
<!--//end ajax call//-->
},
},
close: function() {
emailreset.val("").removeClass("ui-state-error");
$(this).dialog('destroy').remove()
}
});
謝謝!
周杰倫
你可以只使用.reset段(),只需先給表單一個ID。 http://stackoverflow.com/questions/6653556/jquery-javascript-function-to-clear-all-the-fields-of-a-form – PlantTheIdea
這將工作,如果我重置表單。但形式被成功的內容取代。所以當對話框關閉並再次打開時,我想要顯示錶單。 – user2033361
關閉對話框我最後只是重新創建表格: $('#password-form')。html('
'); 如果有人知道更好的選擇讓我知道 – user2033361