Skip to content
本页目录

内嵌百度搜索框

发布时间:

内嵌百度搜索框。

js
      <form action="http://www.baidu.com/s" method="GET" target="_blank">
           <input type="text" class="search-in" name="wd" size="38"/>
           <input type="submit" class="searchbtn" value="百度一下"/>
           <input type="hidden" name="ie" value="utf-8"/>
           <input type="hidden" name="tn" value="ace"/>
       </form>
   

css样式

js
 <style>
        .searchbtn {
            width: 155px;
            height: 46px;
            font-size: 16px;
            line-height: 46px;
            background: #019875;
            margin-right: 70px;
            color: #fff;
        }
        .search-in {
            margin-top: 5000px;
            margin-left: 150px;
        }
     </style>