我一辈子都不知道如何让te ketchup jquery插件工作。我知道我一定错过了一些简单的事情。有人请帮忙!在下面的html中什么都没有发生,没有抛出错误..所以我迷路了!我试着遵循这里的简单步骤:http://demos.usejquery.com/ketchup-plugin/
<!DOCTYPE html>
<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8">
<title>Yammie</title>
<link rel="stylesheet" type="text/css" media="screen" href="css/jquery.ketchup.css" />
<script type="text/javascript" src="js/jquery-1.4.4.min.js"></script>
<script type="text/javascript" src="js/jquery.ketchup.all.min.js"></script>
<script type="text/javascript">
$(document).ready(function() {
$('#default-behavior').ketchup();
});
</script>
</head>
<body>
<form id="default-behavior" action="test.html">
<ul>
<li>
<label for="db-mail">E-Mail</label>
<input type="text" id="db-mail" data-validate="validate(required, email)" />
</li>
<li>
<label for="db-username">Username</label>
<input type="text" id="db-username" data-validate="validate(required, username, minlength(3))" />
</li>
<li>
<label for="db-skill">Skills</label>
<input type="checkbox" id="db-skill" name="db-skill" data-validate="validate(minselect(2))" /> jQuery
<input type="checkbox" name="db-skill" /> HTML
<input type="checkbox" name="db-skill" /> CSS
<input type="checkbox" name="db-skill" /> Rails
</li>
<li>
<input type="submit" value="Is Tasty?" />
</li>
</ul>
</form>
</body>
</html>
最佳答案
试过了。对我有用。尝试从github下载番茄酱0.3.2:https://github.com/mustardamus/ketchup-plugin/downloads
链接这三个js文件:ketchup.js、ketchup.validations.js和ketchup.helpers.js
关于javascript - 无法使Jquery Ketchup插件正常工作,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/13206925/