コンソールにリスト項目を表示しようとすると、Google Chrome のコンソールに「Uncaught ReferenceError: jquery is not defined」と表示されます。私はjqueryに非常に慣れていないので、これについて何か助けていただければ幸いです。
<html>
<head>
<title></title>
<script src="jquery-1.7.1.js"></script>
<style>
ul li {
color:red;
}
</style>
</head>
<body>
<ul>
<li>hello</li>
</ul>
<script>
var lis = jquery('ul li');
console.log(lis);
</script>
</body>
</html>