为被选元素设置一个以上的属性和值。
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了为被选元素设置一个以上的属性和值。相关的知识,希望对你有一定的参考价值。
$(selector).attr({attribute:value, attribute:value ...})
<html>
<head>
<script type="text/javascript" src="/jquery/jquery.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$("img").attr({width:"50",height:"80"});
});
});
</script>
</head>
<body>
<img src="/i/eg_smile.gif" />
<br />
<button>设置图像的 width 和 height 属性</button>
</body>
</html>
以上是关于为被选元素设置一个以上的属性和值。的主要内容,如果未能解决你的问题,请参考以下文章