为被选元素设置一个以上的属性和值。

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>

以上是关于为被选元素设置一个以上的属性和值。的主要内容,如果未能解决你的问题,请参考以下文章

jQuery HTML / CSS 方法

jq中.prop()与attr()的区别

prop()方法和attr()方法以及区别

jQuery css() 方法:设置或返回被选元素的一个或多个样式属性

jquery的一些常用方法

前端 之 jQuery: 属性操作; 操作input中的value; 文档操作***