DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> js制作的鼠標懸浮時產生的下拉框效果
js制作的鼠標懸浮時產生的下拉框效果
編輯:JQuery特效代碼     
先給大家補補課,講個簡單的例子:
. 代碼如下:
<html><head>
<meta type-equiv="Content-Type" content="text/html">
<meta charset="utf-8″>
<script type="text/javascript">
jq=jQuery.noConflict();
jq=(document).ready(function(){
jq("a").mouseover(function(){
jq("a").css("color","#c00″);
});
jq("a').mouseout(function(){
jq("a").css("color","#000000″);
});
</script>
</head><body>
<a href="www.jb51.net">鼠標放在上面看看會發生什麼</a>
</body></html>

jq=jQuery.noConflict();
這是定義一個js的jquery庫名;
jq(document).ready(function(){
/*這是一個關於document對象的函數裡面是函數內容*/
});
jq("a").mouseover()function(){
/*這是定義事件mouseover的內容*/
}。
在看一個實際例子;點擊時隱藏文本:
. 代碼如下:
<html><head>
<script type="text/javascript">
$(document).ready(function() {
$(".abc .hide").click(function() {
$("this").parents("abc").hide("slow"); }); });
</script>
<stype type="text/css">
div.abc {
background: #e5eec;
padding: 7px;
margin: 0px;
border: solid 1px #c00; }
</stype>
</head><body>
<div class="abc">
<p><button class="abc" type="button">hide<button><br/>
這段文字將被隱藏<br/>
這段文字也將被隱藏
</p></div>
<div class="abc"><p>
<button class="abc" type="button">hide me</button><br/>
這段文字在點擊hideme時隱藏<br/>
這段文字同樣也會隱藏。
</p></dvi>
</body></html>

功課差不多了,我們言歸正傳回到主題下拉框才是王道。
. 代碼如下:
<html><head>
<!–author linuxa
blogs: www.jb51.net–>
<meta http-equiv="content-type" content="text/html">
<meta charset="utf-8″>
<title>下拉框的制作</title>
</head><body>
</body></html>
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved