0
我有一個表單,我正在嘗試執行Ajax帖子。Make Submit按鈕不會殺死我的對話框
使用默認的提交按鈕,對話窗口關閉,使用jQuery按鈕,什麼都不會發生。 我想讓對話窗口保持打開狀態,這樣我就可以不間斷地進行Ajax請求,只有當我按Esc或點擊大「X」時纔會關閉。 謝謝
<div id="formBox" style="display: hidden;">
<form>
<fieldset>
<legend>File System Space Calculator</legend>
<p>
<label for="curr_alloc">Current Space Allocation:</label>
<br />
<input type="text" size="5" name="curr_alloc" id="curr_alloc" />
KB <input type="radio" name="curr_unit" value="KB" />
MB <input type="radio" name="curr_unit" value="MB" />
GB <input type="radio" name="curr_unit" value="GB" checked/>
TB <input type="radio" name="curr_unit" value="TB" />
</p>
<p>
<label for="curr_percent">Current Usage Percentage:</label>
<br />
<input type="text" size="5" name="curr_percent" id="curr_percent" />
</p>
<p>
<label for="desired_percent">Desired Usage Percentage:</label>
<br />
<input type="text" size="5" name="desired_percent" id="desired_percent" />
</p>
<br />
<p>
<input type="submit" value="calculate"/></p>
</fieldset>
</form>
</div>
<div id="calcBox" style="display: none;"> </div>
<script>
$(document).ready(function() {
$("#formBox").dialog({
bgiframe: true,
autoOpen: false,
height: 500,
width: 500,
modal: false,
closeOnEscape: true,
title: "Calculator",
closeText: 'Close',
buttons:
{
"Calculate": function()
/* form post */
$("#calcQuery").submit(function(){
$.post("calc.php", $("#calcQuery").serialize(),
function(data){
if (data.length > 0)
{
$("#calcBox").html(data);
$("#calcBox").show();
}
else
{
$("#calcBox").html("<h1>nuttin' here yet</h1>");
}
}, "html");
return false;
});
/* form post */
}
}
});
$('#calcButton').click(function(){
$('#formBox').dialog('open');
return false;
});
});
</script>
我固定的部分,你指示,我沒有錯誤,但我還沒有得到Ajax回調。 我將如何調試這個,螢火蟲似乎沒有幫助,因爲它的對話框。 – 2009-11-20 23:25:04
將$ .post切換到$ .ajax並定義一個錯誤處理程序。這是一個對話框並不以任何方式限制jQuery。您仍然應該在NET選項卡中看到POST請求。 – 2009-11-21 18:11:43