我的表格如下:
<form action="" method="GET" data-ronsor-url="http://web-search.tk">
<input id="q">
<input type="submit" value="search">
</form>
但没有提交任何内容。 如果表单位于http://web-search.tk/?q=mysearch,则在提交表单时,网址为http://web-search.tk/ ?,为什么会这样。它以前工作过。
注意:如果我获得超过1个downvotes,我将删除此问题
答案 0 :(得分:3)
您需要指定输入(查询)字段的action
和name
形式(而不是id
),或者除此之外:
<form action="http://web-search.tk" method="GET">
<input name="q">
<input type="submit" value="search">
</form>
答案 1 :(得分:2)
尝试将名称属性添加到表单输入:
<form action="" method="GET" data-ronsor-url="http://web-search.tk">
<input id="q" name="q">
<input type="submit" value="search">
</form>
我不太确定您要实现的目标,但如果您将操作设置为attr = http://web-search.tk,则会在http://web-search.tk网站上执行搜索。
如果您希望在自己的网站上进行搜索,可能会依赖某些js,但我再也不确定您的目标是什么!
祝你好运,希望有所帮助