如何在新窗口中打开搜索结果?

时间:2016-08-16 17:56:43

标签: html

我一直试图让搜索结果在新窗口中打开几个小时,但没有运气。我做错了什么?

<form id="tfnewsearch" method="get" action="http://www.maps.google.com" target="_blank">
  <input type="text" class="tftextinput" name="q" size="21" maxlength="120">     
  <input type="submit" value="search" class="tfbutton">
</form>

编辑:在这里添加CSS

#tfnewsearch{
    float:right;
    padding:20px;
}
.tftextinput{
    margin: 0;
    padding: 5px 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-size:14px;
}
.tfbutton {
    margin: 0;
    padding: 5px 15px;
    font-family: Arial, Helvetica, sans-serif;
    font-size:14px;
    outline: none;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    color: #ffffff;
}
.tfbutton:hover {
    text-decoration: none;

}
/* Fixes submit button height problem in Firefox */
.tfbutton::-moz-focus-inner {
  border: 0;
}

任何看到错误的人?

1 个答案:

答案 0 :(得分:0)

你做得对。我已经复制并粘贴了您的代码并对其进行了测试,它运行正常,检查您的CSS条款,或者您没有遗漏任何要关闭的标签