用于在html中搜索url的按钮和搜索字段

时间:2017-04-27 10:46:13

标签: html button

我需要在html中写一个字段,用户将输入一个网址和一个搜索按钮来搜索用户输入的网址

tenks

1 个答案:

答案 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>

由于