//html:
<input type="text" id="user"/>
<button onClick="beat()">login</button>
//js
function beat(){
//jQuery获取文本框的值
$("user").val()
window.alert(content.value)
//这个时候比较要用“==”
if(content.value=="admin"){
do...
//跳转页面
//方法1
window.location.href="new.html"
//方法2
window.navigate("new.html")
top.location='new.html'
}else{}
}
扩展资料
<input id="test" type="text" value="HTML5" />
<div id="btn">查看input的值</div>
<script>
var test = document.getElementById("test")
var btn = document.getElementById("btn")
btn.onclick = function(){alert(test.value)
}
</script>参考资料:百度百科 HTML
<input type="text" name="name" ><input type="button" value="确定">定义一个变量通过request.getParameter("name")取得,其中name 是标签名称
另外在javascript中可以
先在标签里加上一个id 如<input type="text" name="name" id="name">
再通过document.getElementById("name").value 取得标签中的值