我想提交一份包含<button>
而非<input>
的表单。
我知道<button>
无法像提交<input>
一样处理表单,我必须使用onclick方法。
我尝试了几件事,但它不起作用
<button name="<?php echo $name; ?>" onclick="document.<?php echo $this->action; ?>.submit()"> ... ( Action URL of the form )
<button name="<?php echo $name; ?>" onclick="document.iso<?php echo rand(); ?>.submit()">... ( name of the form )
<button name="<?php echo $name; ?>" onclick="window.location.href='<?php echo $this->action; ?>'">... ( Action url of the form )
有人知道答案吗?
答案 0 :(得分:10)