我需要在html中写一个字段,用户将输入一个网址和一个搜索按钮来搜索用户输入的网址
tenks
答案 0 :(得分:3)
试试此代码
<script>
function loadSite(){
var site = document.getElementById("bar").value;
window.location = site;
}
</script>
<body>
<input type="text" id="bar">
<button onclick=loadSite()>GO</button>
</body>
由于