我有一個對話框,它有兩個按鈕,一個繼續,一個取消。爲什麼我的對話框只能工作一次?
$(document).ready(function(){
$("[name=resetPwd]").click(function(){
var id = $(this).attr("userid");
var email = $("[field=emailAddress].[userid="+id+"]").text();
var name = $("[field=firstName].[userid="+id+"]").text();
var message = $('<div></div>')
.html('You are about to reset the password for:<br/>'+name+'.<br/>This will send an e-mail to:<br/>'+
email+'<br/><br/><input id="_continue" type="button" value="Continue" /> <input id="_cancel" type="button" value="Cancel" />')
.dialog({
title: 'Reset Password'
});
message.dialog('open');
$("#_cancel").click(function(){
message.dialog('close');
});
});
它工作得很好,(第一次)我所有的數據是存在的,當我點擊取消,它關閉,但如果我嘗試再次取消犯規了做任何事情。有誰知道我做錯了什麼?請致電
當我在點擊處理程序之外創建對話框時,它會在每個頁面上自動打開。有沒有辦法讓它只能用於這一頁即時工作? – Dagron
謝謝你一直工作 – Dagron
不客氣。真高興你做到了。 – BZink