我有以下表格:
<form action="/example.com/search" method="get" id="frm_Search">
<input type="text" name="search_text" placeholder=" Keyword...">
</form>
当使用示例关键字“space cat”提交表单时,我的目标网页会变为以下网址:
/example.com/search/?search_text=space%20cat
但我希望它是space+cat
,而不是space%20cat