好的,这是我的代码,问题是我有一个按钮和一个提交,但是由于某种未知原因,提交按钮中的文本放错了位置
这是代码
<input type="button" id="openerCol" style = "width: 100px; height: 25px" value="Add new column" onclick="showPartial()"/>
<br/>
<input type="button" id="openerInsCol" style = "width: 100px; height: 25px" value="Insert column" onclick="showPartial()"/>
<br/>
<input type="button" id="openerUpCol" style = "width: 100px; height: 25px" value="Update column" onclick="showPartial()"/>
<br/>
<input type="button" id="opener3" style = "width: 100px; height: 25px" value="Delete column" onclick="showPartial()"/>
<br/>
<input type="submit" name="Index" style = "width: 100px; text-align: top; height: 25px"; value="Add Row" />
<br/>
<input type="button" id="openerDelR" style = "width: 100px; height: 25px" value="Delete row" onclick="showPartial()"/>
<br/>
<input type="button" id="openerEditCell" style = "width: 100px; height: 25px" value="Edit cell" onclick="showPartial()"/>
在这里你可以看到屏幕截图http://tinypic.com/r/rwpc48/6
有任何想法吗?