我想在提交get url的时候提交表单结果是:домен.ру/opencart/index.php?ppath=массив
<form name="form" action="/opencart/index.php?route=search/search&q=<?=$q?>&data-key=ppath" method="get">
<input type="checkbox" name="ppath[]" value="54154:654" />text<br />
<input type="submit" value="Отправить"/>
</form>
但你需要它发生домен.ру/opencart/index.php?route=search/search&q=<?=$q?>&data-key=ppath&ppath=массив
的原因action
这里写着:
那些。当 get 方法发送数据时,用户代理看到 ? 在表单的操作中以及在它用输入数据覆盖所有内容之后。因此将所有参数作为输入传递给 get 方法:
什么会将您的网址粘贴到
домен.ру/opencart/index.php?route=search/search&q=<?=$q?>&data-key=ppath&ppath=массив
Z.Y. 受这个答案的启发。