为什么提交按钮不显示文字?

时间:2018-05-24 18:14:10

标签: html web-applications

为什么提交按钮不显示文字?

它显示:

enter image description here

标签:<input type=submit name="OK" value=""/>

思考<input type=submit name=OK value=""/>会有所帮助,但不会。

3 个答案:

答案 0 :(得分:1)

值属性将显示在按钮中。

Range("A1:A2,D1:D2").Copy Range("B6:C7")

答案 1 :(得分:0)

您必须将value=""定义为要显示的文本。

示例:

&#13;
&#13;
<input type=submit name="OK" value="OK" />
&#13;
&#13;
&#13;

答案 2 :(得分:0)

试试这个:

<input type="submit" name="OK" value="Submit Label"/>

请参阅:

https://www.w3schools.com/tags/att_input_type.asp