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

慕运维8629826
浏览 1811回答 2
2回答

刚毅87

<!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>望采纳!

sixGod

var url = window.prompt("服务器地址","http://"); if(url){    location.href=url;}
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript