我是 jquery 的新手,所以请原谅这个问题:这是我的 html
<!DOCTYPE html>
<head>
<script src="http://code.jquery.com/jquery-1.8.3.js"></script>
<script src=teacher_index.js></script>
</head>
<body>
<div id="lessons_viewer">
</div>
</body>
这是我的js:
var data=[
{image:"reading_practice.png"},
{image:"drag_meaning.png"}
]
function populate_lessons_viewer(data){
for (var i=0,count=data.length;i<count;i++){
$('<img/>', {
className: 'lesson_image',
src: data[i].image
}).appendTo('#lessons_viewer');
};
};
$(document).ready(populate_lessons_viewer(data));
我究竟做错了什么?图片没有附加!
ps 我知道如何在 js 中做到这一点,但我正在尝试学习 jquery。
我再次为我的新手错误和问题道歉,但是......当我移动时:
$(document).ready(populate_lessons_viewer(data));
声明到 html 文档中......而不是它的 js 文档。如果有人能解释一下,我将不胜感激。