我在输入上使用 maskinput.js。当我在值后面加上百分号时,加载页面时,什么都没有显示。如果没有百分号,则显示。谁能让我知道发生了什么以及如何解决它?谢谢
<!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://yii-framework-tutorial.googlecode.com/svn-history/r3/assets/fb2a00e4/jquery.maskedinput.js" type="text/javascript"></script>
<script>
$(function(){$(".percent").mask("99%");});
$(function(){$(".number").mask("99");});
</script>
</head>
<body>
<input type="text" name="margin" class="percent" value="12" />
<input type="text" name="number" class="number" value="12" />
</body>
</html>