当用户输入大于 1 的值时,应该会出现警报。
这不起作用:
<input id="inputValue" type="text">
$(function () {
$(document).ready(function () {
$('#inputValue').keyup(function () {
if ('#inputValue'.val()) > 1 alert('Value must be a decimal between 0 en 1');
});
});
})(jQuery);