html - Having input type submit display something other than their value -
<input type = 'submit' value = '1'>
^---instead of input type displaying '1', display 'first page'. possible?
with <input type="submit">
or <input type="button">
, it's not possible separate value that's sent label on button. if want that, need use <button>
.
<button type="submit" value="1">first page</button>
Comments
Post a Comment