添加搜索另一个站点的货运跟踪搜索框

时间:2019-05-25 06:46:23

标签: javascript wordpress search external

我想将我使用的一家中国货运公司的搜索结果添加到我的Wordpress网站。我希望客户能够在其网站上复制并粘贴其跟踪号,并从货运公司的网站中提取结果。

Search box that searches another site

该线程主要为我解答了我的问题,但是我无法自行实现代码。我想从http://express.beckygo.cn/中提取搜索结果,我相信下面需要更改的代码部分是将http://yboss.yahooapis.com/ysearch/limitedweb?format=xml&sites=www.apprenticesearch.com&q=testing换成http://express.beckygo.cn/index.php?c=index&f=search&sn=

有效的示例跟踪号码为SE9000152373

而且,即使我不了解HTML,我仍然需要一些有关如何在Wordpress上实现javascript的指导;我不确定如何命名javascript文件以及通过ftp将其放置在站点上的位置。

我非常感谢任何指导。最近几个月,这是一个巨大的学习曲线,但是我大部分时间都很喜欢这个旅程。

<form id="apprenticeForm" 
action="http://www.apprenticesearch.com/Resources/SiteSearch" 
method="POST" target="_blank" onsubmit='submitSearch()'>
<input type="text" name="searchText" id="searchText" value=""/>
<input type="submit" value="Submit"/>
<input id="siteSearchUrl" name="siteSearchUrl" type="hidden" 
value="http://yboss.yahooapis.com/ysearch/limitedweb? 
format=xml&sites=www.apprenticesearch.com&q=testing"/>
</form>

function submitSearch()
{
q = document.getElementById("searchText").value;
document.getElementById("siteSearchUrl").value = 
'http://yboss.yahooapis.com/ysearch/limitedweb? 
format=xml&sites=www.apprenticesearch.com&q=' + q; 
return true;
}

0 个答案:

没有答案