利用Js獲取input輸入框的值

用戶名:<input type="text" id="username" />
<br />
密碼:<input type="password" id="password" />
<br />
	<a href="javascript:huoqu()">AAAA</a>
<script>
function huoqu(){
var username=$("#username").val();<!-- 第一種方法-->
var userPsd= document.getElementById("password").value;<!-- 第二種方法-->
alert("用戶名爲:"+username+' '+"密碼爲:"+userPsd);
}
</script>
相關文章
相關標籤/搜索