只需给它们一个类似的类,然后使用 CSS 对其进行样式设置:
工作示例:
<html><head>
<style type='text/css'>
input.small {
width:10px; /* Apply to input tags with class "small" */
}
</style>
</head><body><form>
<input id="total" type="text" name="total" value="" readonly="readonly" />
<input class='small' type="button" value="=" onclick="total.value=getTotalB(this.form)" />
<input class='small' type="reset" onClick="reset()" value="-"/>
</form></body></html>
这样您就可以同时更改两个按钮 - 而且它们看起来一样(一致性是很好的做法)。
和他们一起玩:
<style type='text/css'>
input.small {
border:1px solid #ccc;
cursor:pointer;
padding:0;
text-align:center;
width:10px;
}
input.small:hover {
background:dodgerblue;
}
</style>
顺便说一句,问题style="width"
在于你告诉按钮“用width
. 设置自己的样式”。
按钮上写着“多少钱width
?不知道,我会照常做。”
要解决这个问题,你需要告诉它有多宽:style="width:10px;"
现在你有一个满意的按钮。