DIV CSS 佈局教程網

 DIV+CSS佈局教程網 >> 網頁腳本 >> JavaScript入門知識 >> jQuery入門知識 >> JQuery特效代碼 >> jQuery 屬性操作 - attr() 方法
jQuery 屬性操作 - attr() 方法
編輯:JQuery特效代碼     
定義和用法

attr() 方法設置或返回被選元素的屬性值。

根據該方法不同的參數,其工作方式也有所差異。

實例1

設置被選元素的屬性和值。
<html>
<head>
<script type="text/javascript" src="http://down.hovertree.com/jquery/jquery-1.12.3.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$("img").attr("width","180");
});
});
</script>
</head>
<body>
<img src="http://hovertree.comhttps://www.divcss.online/divcssbuju/UploadFiles_7251/201612/2016122917235040.gif" />
<br />
<button>設置圖像的 width 屬性</button>
</body>
</html>
效果:

實例2

返回被選元素的屬性值。
<html>
<head>
<script type="text/javascript" src="http://down.hovertree.com/jquery/jquery-1.12.3.min.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
alert("Image width " + $("img").attr("width"));
});
});
</script>
</head>
<body>
<img src="http://hovertree.com/hvtimg/201506/xlyxp4wg_l.png" width="180" height="140" />
<br />
<button>返回圖像的寬度</button>
</body>
</html>
效果:http://hovertree.com/texiao/jquery/55/
XML學習教程| jQuery入門知識| AJAX入門| Dreamweaver教程| Fireworks入門知識| SEO技巧| SEO優化集錦|
Copyright © DIV+CSS佈局教程網 All Rights Reserved