jQueryUI对话框窗体无法打开

jQueryUI对话框窗体无法打开

我是jquery新手,在显示lightbox表单时遇到问题。我要一张simlilar表格this。但是,我不知道如何定制它
以下是我的代码:

<html>
<head>
    <title>Test Light Box</title>
    <script type="text/javascript" src="jquery-ui-1.8.20.custom.min.js"></script>
    <script type="text/javascript">
        $("#dialog-form").dialog({
            autoOpen: false,
            height: 500,
            width: 450,
            modal: true,
            Cancel: function() {
                $( this ).dialog( "close" );
            }
        });

        $("#create-uer")
            .button()
            .click(function(){
                $( "#dialog-form" ).dialog( "open" );
            });

    </script>
</head>
<body>
    <div id="dialog-form">
    <form>
    <fieldset>
        <label for="name">Schlagwort</label>
        <input type="text" name="search" id="search" />
    </fieldset>
    </form>
</div>

<button id="create-user">Create new user</button>
</body>

最佳答案

您应该在以下代码之前添加jquery.css:

<link rel="stylesheet" href="jquery-ui.css" type="text/css" media="all" />

从本页下载jquery
http://docs.jquery.com/Downloading_jQuery#Download_jQuery

把它添加到你的页面上
<script type="text/javascript" src="jquery-1.7.2.min.js"></script>
<script type="text/javascript" src="jquery-ui-1.8.20.custom.min.js"></script>

关于jquery - jQueryUI对话框窗体无法打开,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/10478361/

10-12 13:51