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

Popular posts from this blog

SVG stroke-linecap doesn't work for circles in Firefox? -

routes - Laravel 4 Wildcard Routing to Different Controllers -

cross browser - XSLT namespace-alias Not Working in Firefox or Chrome -