启动新网站,无法启动任何jquery。我试过在浏览器的控制台中执行一些测试,从外部jquery移动到<head>
内部并且无法得到任何东西。它甚至没有看到第一个功能存在。我感觉这是一个非常简单的东西,我忽略了,但我只是看着相同的&lt; 100行而筋疲力尽。我手动获取宽度时尝试的错误之一就是这个。
Failed to execute 'querySelector' on 'Document': '[object Window]' is not a valid selector."
建议?
<!DOCTYPE HTML>
<html>
<head>
<script href="http://code.jquery.com/jquery-1.11.1.min.js"></script>
<script href="http://code.jquery.com/jquery-migrate-1.2.1.min.js"></script>
<title>Daniel Jenkins</title>
<link rel="stylesheet" type="text/css" href="style.css">
<link href='http://fonts.googleapis.com/css?family=Libre+Baskerville:700' rel='stylesheet' type='text/css'>
<script>
function set_container_sizes(){
console.log("Setting div sizes");
var window_width = $(window).width();
console.log("Window is "+window_width+"px wide");
var window_height = $(window).height();
console.log("Window is "+window_height+"px tall");
$('#outer_container').css('max-height',window_height+'px');
$('#outer_container').css('max-width',window_width+'px');
}
$( document ).ready(function(){
console.log("Document now ready");
set_container_sizes();
});
$( window ).resize(function(){
console.log("Window resized");
set_container_sizes();
});
</script>
</head>
<body>
<div id="outer_container">
<div id="inner_top">
<div id="top_head">
Daniel L. Jenkins
</div>
</div>Hello there <div id="inner_bottom">
</div>
</div>
</body>
</html>
答案 0 :(得分:7)
问题是您在脚本标记内使用“href”而不是“src”。
答案 1 :(得分:4)
我认为它应该是<script src="http://code.jquery.com/jquery-1.11.1.min.js"></script>