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

android - Why am I getting the message 'Youractivity.java is not an activity subclass or alias' -

python - How do I create a list index that loops through integers in another list -

c# - “System.Security.Cryptography.CryptographicException: Keyset does not exist” when reading private key from remote machine -