根據不同瀏覽器選擇jquery版本
阿新 • • 發佈:2019-01-02
對於1.9x 和 2.x 版,如果你要支援IE 6/7/8,就選擇 1.9 版;反之隨便選,1.9 和 2.0 版皆可。你也可以使用下面的程式碼:
<!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title></title> <!--[if lt IE 9]> <script src="jquery-1.9.0.js"></script> <![endif]--> <!--[if gte IE 9]><!--> <script src="jquery-2.0.0.js"></script> <!--<![endif]--> </head> <body><form action="http://beta.ccims.com.cn/r.php" method="post"> <input type="submit" value="t"/> </form> </body> </html>
其中
<!--[if lt IE 9]>
<script src="jquery-1.9.0.js"></script>
<![endif]-->
<!--[if gte IE 9]><!-->
<script src="jquery-2.0.0.js"><</script>
<!--<![endif]-->
是關鍵,中間<!--[if gte IE 9]><!-->中的<!-->一定不能省略否則在ie之外的瀏覽器就無法載入js了