gpt4 book ai didi

jquery - 如何使用 jquery UI 对话框

转载 作者:行者123 更新时间:2023-12-01 06:38:18 27 4
gpt4 key购买 nike

我想知道我需要做的一切只有一个基本的 jquery 对话框出现在屏幕上。下面是我的代码。为什么执行下面的代码时没有呈现任何 UI 属性,有什么帮助吗?当前发生的情况是,如果用户单击“显示对话框”,则会出现纯 html 文本,没有任何 UI css 或实际对话框。我已经包含了从 http://jqueryui.com/download 下载的 jquery UI 脚本。但也许我没有下载并使用正确的 UI 脚本?谢谢!

母版页代码:

<%@ Master Language="C#" AutoEventWireup="true" CodeFile="Site.master.cs" Inherits="SiteMaster" %>

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1- strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head runat="server">
<title></title>
<link href="~/Styles/Site.css" rel="stylesheet" type="text/css" />

<script type="text/javascript" src="Scripts/jquery-1.7.1.min.js"></script>
<script src="Scripts/UI/css/ui-lightness/jquery-ui-1.8.17.custom.css" type="text/javascript"></script>
<script src="Scripts/UI/js/jquery-ui-1.8.17.custom.min.js" type="text/javascript"></script>
<asp:ContentPlaceHolder ID="HeadContent" runat="server">
</asp:ContentPlaceHolder>
</head>
<body>
<form runat="server">
<div class="page">
<div class="main">
<asp:ContentPlaceHolder ID="MainContent" runat="server"/>
</div>
</div>
</form>
</body>
</html>

默认页面:

<%@ Page Title="Home Page" Language="C#" MasterPageFile="~/Site.master" AutoEventWireup="true"
CodeFile="Default.aspx.cs" Inherits="_Default" %>

<asp:Content ID="HeaderContent" runat="server" ContentPlaceHolderID="HeadContent">
<script src="Scripts/textboxclone.js" type="text/javascript"></script>
<script src="Scripts/fadeOut.js" type="text/javascript"></script>
<script src="Scripts/flip.js" type="text/javascript"></script>
<script src="Scripts/dialog.js" type="text/javascript"></script>

</asp:Content>
<asp:Content ID="BodyContent" runat="server" ContentPlaceHolderID="MainContent">
<a id='showDialog' href="#">Show Dialog</a>
<div id="dialog1" style="display:none;">
<div id="dialog" title="Basic dialog">
<p>This is the default dialog which is useful for displaying information. The dialog window can be moved, resized and closed with the 'x' icon.</p>
</div>
</div>
</asp:Content>

最佳答案

您必须将 jQuery CSS 文件作为 CSS 文件包含在内。使用

<link rel="Stylesheet" 
href="Scripts/UI/css/ui-lightness/jquery-ui-1.8.17.custom.css" />

而不是

<script src="Scripts/UI/css/ui-lightness/jquery-ui-1.8.17.custom.css" 
type="text/javascript"></script>

关于jquery - 如何使用 jquery UI 对话框,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9070823/

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