目前我有一个这样的按钮
<input type="submit" id="button" name="submit" value="Generate Report" />
我必须为我给出的提交按钮使用图像,如下所示
<input type="image" id="continue" style="float:right;" src="<?php echo base_url();?>images/Generatereports_btn.png" onmouseover="this.src='<?php echo base_url();?>images/Generatereports_high.png'" onmouseout="this.src='<?php echo base_url();?>images/Generatereports_btn.png'"/>
如果在显示图像时给出类型,但它不能用作提交按钮。如果我给类型作为提交图像没有显示我在做什么错
还有一件事是我有另一个按钮
<span class="button" style="margin-left:525px;padding-top:8px;" ><a style="color: #FFFFFF;" href="add_user?height=500&width=650&modal=false"
class="thickbox">Add User</a></span>
如果我使用上面的图像,则页面未显示为模式,而是显示为新页面。
请有人帮我谢谢。