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

sql - VB.NET Operand type clash: date is incompatible with int error -

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

python - TypeError: Scalar value for argument 'color' is not numeric in openCV -