Reputation: 37
Why the submit button doesn't show the text?
It shows:
The tag for it: <input type=submit name="OK" value=""/>
Thought <input type=submit name=OK value=""/>
would help,but not.
Upvotes: 0
Views: 77
Reputation: 234
You have to define into value=""
the text to display.
Example :
<input type=submit name="OK" value="OK" />
Upvotes: 0
Reputation: 374
The value attribute will be shown in the button.
<input type=submit name=OK value="button"/>
Upvotes: 1
Reputation: 64
Try this:
<input type="submit" name="OK" value="Submit Label"/>
See:
https://www.w3schools.com/tags/att_input_type.asp
Upvotes: 0