我有一个自定义搜索栏,但我不知道如何使其与js代码一起使用。
这是我的搜索按钮:
script type = "text/javascript" >
document.getElementById('searchform').onsubmit = function() {
window.location = 'http://www.google.com/search?q=site:yourdomainname ' + document.getElementById('test').value;
return false;
}
<!DOCTYPE html>
<center>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<style>
input[type=text] {
width: 130px;
box-sizing: border-box;
border: 2px solid #000000;
border-radius: 4px;
font-size: 16px;
background-color: white;
background-image: url('searchicon.png');
background-position: 10px 10px;
background-repeat: no-repeat;
padding: 12px 20px 12px 40px;
-webkit-transition: width 0.4s ease-in-out;
transition: width 0.4s ease-in-out;
}
input[type=text]:focus {
width: 100%;
}
</style>
</head>
<body>
<form>
<input type="text" name="search" placeholder="Search..">
</form>
</body>
</html>
如果能帮助我,那太好了,谢谢。
答案 0 :(得分:0)
您的html中没有声明可以searchform
的元素test
或getElementById
。
将您的表单更改为以下形式:
<form id="searchform">
<input id="test" type="text" name="search" placeholder="Search..">
</form>