Why the pattern in the input number doesn't work, I have the server error when I write 1.1
, 1,1
because in the mvc controller method i should take the int
type.
<input type="number" name="Quantity" min="1" title="Пожалуйста, введите количество" placeholder="кол-во" pattern="\d+" required />
the required work right.
How make the pattern to have only integer value?