jquery中的对话框无效

时间:2013-02-08 12:41:10

标签: jquery-ui jquery jquery-plugins

我已经编写了这段代码,但它无效。

$("#dialog-confirm").text("Do you want to submit the new vendor for approval?");
    $( "#dialog-confirm" ).dialog({
        resizable: true,
        title:"Submit",
        height:170,
        zIndex:99999,
        modal: true,
        position: "center", 
        buttons: {
            "Yes": function() {
            $( this ).dialog( "close" );            
            return false;
            },

            "No": function() {
                $( this ).dialog( "close" );

            return false;
        }
        }
    });

请帮忙。

1 个答案:

答案 0 :(得分:1)

我必须使用答案,因为我还没有发表评论的权限。你的代码看起来不好看,如果你把它放到jsfiddle它实际上是有效的(至少在chrome中)。你是否缺少对jquery或jquery-ui库的引用?