0
我想實現的是根據我想要的條件在我的JQueryUI對話框中顯示按鈕。怎麼做?這是我迄今爲止所做的,但它不工作。我的代碼有任何問題?任何幫助,請..JQueryUI對話框中的開關櫃選項:按鈕
var _messageBoxButtons = 0
$("#Dialog").dialog({
autoOpen: true,
modal: true,
resizable: false,
height: 150,
width: 300,
zIndex: 100000,
closeOnEscape: false,
open: function() {
$(".ui-dialog-titlebar-close").hide();
},
title: "Testing Title",
buttons: function()
{
switch(_messageBoxButtons)
{
case 0:
return {
"OK": function (event) { }
};
case 1:
return {
"Yeah": function (event) { }
};
}
}
});
在此先感謝
jsFiddle怎麼樣? – j08691