![](https://box.kancloud.cn/6f07c33922497c85878d4d84e4ec7c2b_355x66.png)
~~~
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Title</title>
</head>
<body>
<div id="div1" class="box" neusoft="neusoft">aaaaa</div>
<input type="text" value="123">
<input type="text" value="456">
<script type="text/javascript" src="js/jquery-1.11.1.js"></script>
<script>
//操作属性attr()
$('#div1').attr('class','box2');// 修改
$('#div1').attr('title','hello');// 添加
// alert($('#div1').attr('class'));
// alert($('#div1').attr('neusoft'));
// val()
// alert($('input').val());// 只能获取第一个
$('input').val(666);
</script>
</body>
</html>
~~~