请告诉我如何使用modernizer进行IE9验证。我尝试了以下但它不起作用
<script type="text/javascript" src="//code.jquery.com/jquery-1.10.2.min.js"></script>
<script type="text/javascript" src="modernizr.js"></script>
</head>
<body>
<form action="" method="post">
<input type="text" value="" required/>
<input type="submit" value="click">
</form>
答案 0 :(得分:1)
Modernizr不会提供任何内容,只是让您知道某项功能是否可用。使用Modernizr设置输入验证的Here is an article。
实际上,你会做类似
的事情yepnope({
test : Modernizr.geolocation,
nope : ['validation-polyfill.js']
});
您可以使用类似formvalidation的内容来进行实际的匀场