我刚刚下载了jquery数字插件,并且已经添加了jquery库但是它还没有工作,所以如果你们有人可以看一下我的代码:
<head>
<script type="text/javascript" src="js/jquery.min.js"></script>
<script type="text/javascript" src="js/jquery.numeric.js"></script>
</head>
<p>How many Questions would you like to have in your form?</p>
<form action="" method="post">
<input class="positive-integer" name="questions" placeholder="Type questions number in digits as e.g 5" style="width:19%;" type="text" />
<input type="submit" name="submit" value="Submit">
</form>
对于class="positive-integer"
:
<input class="positive-integer" name="questions" placeholder="Type questions number in digits as e.g 5" style="width:19%;" type="text" />
所以,如果你有人可以请看看我的代码..!
以下是该文件的实时链接:http://www.huntedhunter.com/php-login/test/questions.php
答案 0 :(得分:2)
答案 1 :(得分:0)
您必须初始化插件才能使您的示例正常工作..
将此信息包含在您的信息页
中<script type="text/javascript">
$(function() {
$(".positive-integer").numeric()
});
</script>