gpt4 book ai didi

jQueryUI 对话框窗体打不开

转载 作者:太空宇宙 更新时间:2023-11-04 14:44:22 25 4
gpt4 key购买 nike

我是 jquery 的新手,我在显示灯箱表单时遇到问题。我想要一个类似于 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>

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

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com