我的wordpress主题中有一个表单。我想添加一个" plus"在网址空间。
我的源代码:
<form method="get" id="searchform" action="/search/" onsubmit="return false;">
<input type="text" name="s" id="s" placeholder="Search" />
<input type="submit" class="submit" id="searchsubmit" value="<?php esc_attr_e( '', 'themeO' ); ?>" onclick="window.location.href=this.form.action + this.form.s.value;" />
</form>
我的实际搜索网址 - 关键字:&#34;干得好&#34;
http://www.example.com/search/good job
我需要这个网址:
http://www.example.com/search/good+job
答案 0 :(得分:0)
您可以使用replace()
替换空格:
window.location.href=this.form.action + this.form.s.value.replace(/\s+/g,"+");