<script type="text/javascript">
//找到第二个input,通过attr获取属性value的值
$("input:nth-child(2)").attr('value')
</script>
<script type="text/javascript">
//找到第三个input,通过使用一个函数来设置属性
//可以根据该元素上的其它属性值返回最终所需的属性值
//例如,我们可以把新的值与现有的值联系在一起:
$("input:nth-child(3)").attr('value',function(i, val){
return '通过function设置' + val
})
</script>
<script type="text/javascript">
//找到第四个input,通过使用removeAttr删除属性
$("input:nth-child(4)").removeAttr('value')
</script>
Jamespan
Jerry_木子
慕仰6620973
相关分类