0

わかりましたので、これは私のコードです。問題は、ボタンと送信がありますが、何らかの理由で送信ボタンのテキストが間違っていることです

ここにコードがあります

<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

何か案は?

4

4 に答える 4

2

style 属性のセミコロンの位置が間違っています。私はあなたのためにその行を修正しました

 <input type="submit" name="Index" style = "width: 100px;  text-align: top; height: 25px;" value="Add Row" />
于 2013-01-09T09:05:11.417 に答える
0

;に問題がある可能性がありますheight: 25px";

そのセミコロンを削除するだけです。

コードをコピーして貼り付けるだけで、;.

デモは次のとおりです。

于 2013-01-09T09:07:55.663 に答える
0
style = "width: 100px;  text-align: top; height: 25px";

する必要があります

style = "width: 100px;  text-align: top; height: 25px;"
于 2013-01-09T09:08:04.730 に答える
0

「text-align: top;」を削除してみてください。または、他のボタンのすべてのプロパティをコピーしてみてください

于 2013-01-09T09:14:52.330 に答える