WordPress添加语音搜索功能(适合百度站内搜索)

Author: 陌小雨Date: 2015-05-02View: 65

先上图:
20150502102234

看到搜索前面的那个语音图标了么?

功能代码:

x-webkit-speech

没错,就是这么简单,本功能主要用来装逼,实际没有任何作用。

如果你是按照陌小雨分享的WordPress添加百度站内搜索(适合所有网站),那么只需要将该串代码添加到class="form-control"后面即可,全部代码:

<form  class="search-form" action="http://so.dedewp.com/cse/search" target="_blank" id="cse-search-box">
    <input  type="hidden" name="s" value="5517432049748900239" />
    <input type="text" onclick="this.value='';"  name="q" id="q" class="form-control" x-webkit-speech/>
    <input class="btn" type="submit" id="go" value="搜索" />
 </form>