jquery当中如何给某个属性赋值例 1.7(attrSet.html)
<html>
<head>
<title>attr(name,value)⽅法</title>
<style type="text/css">
<!--
button{
border:1px solid #860066;
}
-->
</style>
<script language="javascript" src="jquery.min.js"></script>
<script language="javascript">
function DisableBack(){
//选择第2个和第3个button
/*<input type="text" name='aa[]' disabled="disabled" value='11'>*/
$("button:gt(0)").attr("disabled","disabled");
}
</script>
</head>
<body>
htmlbutton属性
<button οnclick="DisableBack()">第⼀个</button> 
<button>第⼆个</button> 
<button>第三个</button> 
</body>
</html>

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。