定義和用法
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/