強大的jquery外掛程式jqeuryUI做網頁對話方塊效果!簡單

來源:互聯網
上載者:User

我們先來最簡單的,網頁的登入視窗;

不過開始之前,大家先下載jquery的外掛程式
本人習慣用了vs2008來做網頁了,先添加一個空白頁

這是最簡單的的做法。。。先在body裡面插入

<body>
<div id="div1">
<table>
<tr><td>使用者名稱</td><td><input type="text" style="width:100px" /></td></tr>
<tr><td>密碼</td><td><input type="text" style="width:100px" /></td></tr>
</table>
</div>
</body>

這是時候我們就要把下載的東西解壓好,把其中jquery1.4.2檔案夾裡的jquery-1.4.2.js還有jquery-ui-1.8.11.custom檔案夾裡的js檔案夾的jquery-ui-1.8.11.custom.min.js,把這兩個複製到目錄下

現在我們就來添加引用了,這時候如果是裝了2008的sp1的話,可以直接拖動那兩個js檔案到代碼head標籤中來,當然也可以手動添加的,看圖:


下一步我們就來用它了,

<script type="text/javascript">
        $(function() {
            $("#div1").dialog();
        });
    </script>

直接調用對象的dialog()方法;好了。。。看看效果吧

不怎麼好看對吧...不要緊張,這時候我們把jquery-ui-1.8.11.custom檔案夾裡的css檔案夾複製進來,看圖吧。。。

把這個jquery-ui-1.8.11.custom.css,css檔案添加引用

好了。。。在看看效果吧

就是這麼簡單的幾句代碼。。。
複製代碼 代碼如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" " http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html
xmlns="http://www.w3.org/1999/xhtml">
<head>
<title></title>
<link href="../css/ui-lightness/jquery-ui-1.8.11.custom.css" rel="stylesheet" type="text/css" />
<script src="jquery-1.4.2.js" type="text/javascript"></script>
<script src="jquery-ui-1.8.11.custom.min.js" type="text/javascript"></script>
<script type="text/javascript">
$(function() {
$("#div1").dialog();
});
</script>
</head>
<body>
<div id="div1">
<table>
<tr><td>使用者名稱</td><td><input type="text" style="width:100px" /></td></tr>
<tr><td>密碼</td><td><input type="text" style="width:100px" /></td></tr>
</table>
</div>
</body>
</html>

大家學習。。。有好的也告訴我哦.....

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.