为了账号安全,请及时绑定邮箱和手机立即绑定

利用prompt怎么达到输入网址就能跳转到想要的网页?

利用prompt怎么达到输入网址就能跳转到想要的网页?

慕运维8629826 2016-07-18 15:03:29
查看完整描述

2 回答

?
刚毅87

TA贡献345条经验 获得超309个赞

<!DOCTYPE html>
<html>
	<head>
		<meta charset="UTF-8">
		<title></title>
	</head>
	<body>
		<input type="button" id="inp" value="网址"/>
	</body>
	<script type="text/javascript">
		var inp = document.getElementById('inp');
		inp.onclick = function () {
			var name = prompt('请输入网址','');
		    	window.location.href = name;
		  }
	</script>
</html>

望采纳!

查看完整回答
3 反对 回复 2016-07-18
?
sixGod

TA贡献34条经验 获得超22个赞

var url = window.prompt("服务器地址","http://");

if(url){

    location.href=url;

}

查看完整回答
1 反对 回复 2016-07-18
  • 2 回答
  • 0 关注
  • 1810 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信