利用jsearch怎樣搜尋特定欄目裡的資訊?

xmsb_bbs發表於2020-04-05

解決方法:

以下提供前臺呼叫樣例表單程式碼:

<table border="0" cellspacing="0" cellpadding="0" style="line-height: 20px">
    <form method="get" action="http://www.xxx.gov.cn/jsearch/index.jsp" target="_blank" name="qForm">
        <tbody>
            <tr>
                <td width="145"><input id="q" οnblur="if(this.value==&quot;&quot;){this.value=&quot;請您輸入關鍵字&quot;}" οnclick="if(this.value==&quot;請您輸入關鍵字&quot;){this.value=&quot;&quot;;this.focus();}" style="padding-left: 5px; width: 140px; color: #909090" name="q" value="請您輸入關鍵字" type="text" /> <input type="hidden" name="pagemode" value="result" /><input type="hidden" name="style" value="1" /><input type="hidden" name="appid" value="1" /><input type="hidden" name="ck" value="0" /><input id="pos" type="hidden" name="pos" value="title,content" /><input type="hidden" name="colgroup" value="1,2,3,4,5" /></td>
                <td width="61"><input src="http://www.xxx.gov.cn/picture/0/101029152324256.gif" type="image" name="imageField" /></td>
            </tr>
        </tbody>
    </form>
</table>

上述程式碼中查詢特定欄目需要選取一個jsearch庫,這裡顯示的庫:<input type="hidden" name="appid" value="1" />,版面套系要和庫一致:<input type="hidden" name="style" value="1" />,colgroup就是控制所要搜尋的欄目:<input type="hidden" name="colgroup" value="1,2,3,4,5" />

 

通過以上前臺呼叫程式碼可以搜尋特定的欄目(上述欄目id為1,2,3,4,5)。


 

 

相關文章