在html网页中如何实现文本输入 后点击提交 然后转到另一个页面
1个回答
展开全部
<input type="text" id="num"/><input type="button" onclick="skip()" value="跳转">
<script type="text/javascript">
function skip(){
var num = document.getElementById("num").value;
if(num==1){
window.location.href = "1.html";
}else if(num==2){
window.location.href = "2.html";
}
}
</script>代码中用原生的js写的,也可以使用jquery来实现,其中的1.html,2.html为跳转的页面,若需要十个页面,以此类推即可。
<script type="text/javascript">
function skip(){
var num = document.getElementById("num").value;
if(num==1){
window.location.href = "1.html";
}else if(num==2){
window.location.href = "2.html";
}
}
</script>代码中用原生的js写的,也可以使用jquery来实现,其中的1.html,2.html为跳转的页面,若需要十个页面,以此类推即可。
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询