我有一个表格,就是这个
<form method="get" action="<?php bloginfo('url'); ?>">
<input name="date-beginning" type="text" class="datepicker" />
<input name="date-end" type="text" class="datepicker" />
<input name="s" type="text" />
<input type="submit" value="Ok" class="botao-pequeno botao-pequeno-input" />
</form>
好吧,当用户发送所有字段时,我们得到以下响应: http ://myblogurl.com/?s=example&date-beginning=05/05/05&date-end=07/07/07
如果他没有填写,例如date-beginning
我们得到的字段http://myblogurl.com/?s=example&date-beginning=&date-end=07/07/07
我想要的是,如果他不填写该字段,例如date-beginning
,仍然会发送表单,但不会发送变量,例如:http ://myblogurl.com/?s=example&date-end= 07/07/07
有没有办法做到这一点?如何?