您可以在易趣列表设计中包含搜索输入吗?

Can you include a search input in an Ebay listing design?

有人知道您是否可以在 Ebay 列表中输入搜索内容吗?我说的不是 Ebay 商店,因为我知道你可以为他们服务。

绝对!

这里有几个很好的例子来证明这一点:

这是一个很好的例子。注意一定要把http://stores.ebay.com/storeId/换成自己的店铺URL.:

以下应放在模板源中:

<form action="http://stores.ebay.com/storeId/" target="_blank">
   <input name="_nkw" placeholder="Search by brand or keyword...">
   <input type="submit" value="Search">
</form>

另请注意 target="_blank" 至关重要,否则 eBay 在 iframe 中放置的列表将继续在 iframe 中重新加载。

这里有一些您可以使用的东西,只需更改商店名称

<div id="SearchBox"><form action="http://stores.ebay.com/STORENAME/" id="ga_search" target="_top" style="padding-top: 54px;">
            <input type="text" style="width: 205px; height:40px; display: block; float:left;border: none;outline: none;background: transparent;padding-left: 20px;font-size: 18px;" class="searchbox" name="_nkw" value="">
            <input name="Submit" type="submit" style="height:40px; display: block; border-style: none; float:left; background: none; cursor: pointer;padding:10px 22px;" class="searchbox_submit" value=" "></form>
</div>