私は HTML5 フォームが初めてで、古いブラウザーで動作するようにしています。Webshims Lib ポリフィルを使用して、単純な HTML5 デモ フォームを IE8 で検証しようとしていますが、検証されていないようです。私が知る限り、Webshims Lib websiteの指示に従っています。私は何を間違っていますか?ここに私のコード(以下)とライブリンクがあります
<!DOCTYPE HTML>
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<title>Untitled Document</title>
<script src="http://code.jquery.com/jquery-1.9.1.min.js"></script>
<script src="js/modernizr-custom.js"></script>
<script src="js/polyfiller.js"></script>
<style>
ul {list-style-type: none; margin-top: 100px;}
li {padding-bottom: 10px;}
</style>
</head>
<body>
<form id="myform" action="process.php" method="post">
<ul>
<li><label>Name</label>
<input type="text" name="name"></li>
<li><label>Email</label>
<input type="email" name="email" required></li>
<li><label>Numbers</label>
<input type="number" name="numbers"></li>
<li><label>Message</label>
<textarea name="message" placeholder="Type Here" required></textarea></li>
<li><input id="submit" name="submit" type="submit" value="Submit"></li>
</ul>
</form>
<script>
$.webshims.polyfill();
</script>
</body>
</html>