我想允许用户输入1或2位数字,并显示数字后跟百分号。如果未输入数字,则应为空白。附件几乎可以工作,但如果只输入一位数字,则不会显示百分号。有人可以帮忙吗?感谢
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="content-type" content="text/html; charset=ISO-8859-1" />
<title>Mask</title>
<script src="http://code.jquery.com/jquery-latest.js"></script>
<script src="http://cloud.github.com/downloads/digitalBush/jquery.maskedinput/jquery.maskedinput-1.3.js" type="text/javascript"></script>
<script>
$(function(){$(".percent").mask("9?9%");});
</script>
</head>
<body>
<input type="text" name="percent" class="percent" value="" />
</body>
</html>
答案 0 :(得分:9)
试试这个 - http://jsfiddle.net/dm8Mb/12/
$(function(){
$(".percent").mask("9?9%");
$(".percent").on("blur", function() {
var value = $(this).val().length == 1 ? $(this).val() + '%' : $(this).val();
$(this).val( value );
})
});