<!DOCTYPE HTML>
<html xmlns="">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>placeholder支持IE6/7</title>
<script type="text/javascript" src="../Public/Js/jquery-1.9.1.js"></script>
<script type="text/javascript" src="../Public/Js/jquery.placeholder-1.0.js"></script>
<script type="text/javascript">
$(function(){ $('input').placeholder({isUseSpan:true}); })
function getValue() { var textValue = $("#userName").val(); alert(textValue); }
</script>
</head>
<body>
<form> <label for="userName">用户名</label>
<input type="text" id="userName" placeholder="输入用户名"/>
<input type="button" value="取值" onclick="getValue()"/>
</form> </body> </html>
jquery.placeholder-1.0.js 可以去网上下载