<!doctype html>
<html>
<head>
<meta charset=" utf-8">
<meta name="author" content="http://www.plcxue.com/" />
<title>
脚本学堂</title>
<script type="text/
javascript" src="mytest/jQuery/jquery-1.8.3.js"></script>
<script type="text/javascript">
$(document).ready(function(){
$("button").click(function(){
$(":file").css("background-color","red");
});
});
</script>
</head>
<body>
<ul>
<li><input type="file" /></li>
</ul>
<button>点击查看效果</button>
</body>
</html>