0

我已经编写了这段代码,但它不起作用。

$("#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;
        }
        }
    });

请帮忙。

4

1 回答 1

1

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

于 2013-02-08T13:07:58.993 回答