如果检测到CSS3不受支持,我无法重定向我的网站。我使用CSS3动画,所以我决定测试它们,但我不能让它重定向,更不用说在我的做一个alert()消息。请帮帮我。谢谢!
<!DOCTYPE html>
<html>
<head>
<title>95.3 FM - KXLE Stream</title>
<script type="text/javascript" src="modernizr.custom.86596.js"></script>
<link rel="icon" type="image/png" href="images/favicon.png">
<link rel="stylesheet" type="text/css" href="css/style.css">
<link href="css/ui-lightness/jquery-ui-1.10.3.custom.css" rel="stylesheet">
<script src="js/jquery-1.9.1.js"></script>
<script src="js/jquery-ui-1.10.3.custom.js"></script>
<script type="text/javascript" src="js/js.js"></script>
<script> //THIS IS WHAT WILL NOT WORK********************************************
if (!Modernizr.cssanimations) {
window.location.href = 'www.google.com';
}
</script>
</head>
答案 0 :(得分:0)
您想要使用
if (Modernizr.cssanimations) {
window.location.replace("http://google.com");
}
答案 1 :(得分:0)
解决了!我没有指出我脑中的modernizr js文件的正确位置。