可能重複禁用關閉按鈕:
Remove close button on jQueryUI Dialog?在jQuery UI的對話框
我得到了一些問題,JQuery用戶界面對話框禁用關閉按鈕。
我的代碼如下圖所示。
$(document).ready(function() {
$("#dialog").dialog({
modal: true,
width:800
});
});
thanx提前
可能重複禁用關閉按鈕:
Remove close button on jQueryUI Dialog?在jQuery UI的對話框
我得到了一些問題,JQuery用戶界面對話框禁用關閉按鈕。
我的代碼如下圖所示。
$(document).ready(function() {
$("#dialog").dialog({
modal: true,
width:800
});
});
thanx提前
試試這個它會工作..
$(document).ready(function() {
$("#dialog").dialog({
open: function(event, ui) { $(".ui-dialog-titlebar-close").hide(); },
modal: true,
width:800
});
});
謝謝你Umakanta。 – 2010-09-28 07:23:43
不能相信這不是創建對話框的選項! – 2011-11-18 16:47:39
這些都是 「一些問題」? – Reigel 2010-09-28 07:22:06
我沒有得到如何禁用關閉按鈕。 – 2010-09-28 07:27:11