JQuery學習之(二)選取器

來源:互聯網
上載者:User

<!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>
<meta http-equiv="Content-Type" content="text/html; charset=utf8" />
<title>JQuery選取器</title>
<style>
.change{
 background-color:#009900;
}
.border{
 border:#FF0000 thin solid;
}
</style>
<script language="javascript" type="text/javascript" src="jquery-1.3.2.min.js"></script>
<script language="javascript">
function change1()
{
var meinv=$("div");

for(var i=1;i<meinv.length;i=i+2)
{
meinv[i].className="change";
}
}
function change2()
{
var meinv=$("div");

for(var i=1;i<meinv.length;i=i+2)
{
  meinv[i].className="";
}
}
function change3(){
var getclass=$("div:last");
   $("span").text(getclass.attr("class"));
}
function change4()
{
 $("div:gt(1)").addClass("border");
}
function change5()
{
 $("div:gt(1)").removeClass("border");
}
function change6()
{
 $("input:gt(1)").attr("disabled","disabled");
}

</script>
</head>

<body>
<div>高檔有品味,方便又快捷,省時省力,又省心!</div>
<div>高檔有品味,方便又快捷,省時省力,又省心!</div>
<div>高檔有品味,方便又快捷,省時省力,又省心!</div>
<div>高檔有品味,方便又快捷,省時省力,又省心!</div>
<div>高檔有品味,方便又快捷,省時省力,又省心!</div>
<div>高檔有品味,方便又快捷,省時省力,又省心!</div>
<div>高檔有品味,方便又快捷,省時省力,又省心!</div>
<div>高檔有品味,方便又快捷,省時省力,又省心!</div>
<p>
<input name="d" type="button" onClick="change6()" value="鎖定後面的Input" />
<input name="d" type="button" onClick="change1()" value="實現隔行變色" />
<input name="d" type="button" onClick="change2()" value="取消隔行變色" />
<input name="d" type="button" onClick="change3()" value="得到最後一個div的CSS類名稱" />
<input name="d" type="button" onClick="change4()" value="為第二個以後的DIV加邊框" />
<input name="d" type="button" onClick="change5()" value="除去第二個以後的DIV邊框" />
</p>
<span></span>
</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.