0
私はスクリプトのどこかに構文エラーがあると思いますが、誰かがそれを指摘できますか?誰かが私の構文エラーを指摘できますか?
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Challenge: Daisy chain</title>
</head>
<body>
<script src='https://ajax.googleapis.com/ajax/libs/jquery/2.1.4/jquery.min.js'></script>
<script>
for (i=0;i<12;i++)
{
$('<img>')
.attr('src', 'https://upload.wikimedia.org/wikipedia/commons/2/29/English_Daisy_(Bellis_Perennis).jpg')
.attr('width','100')
.attr('alt', 'Daisy chain')
.appendTo(document.body);
}
</script>
</body>
</html>
JavaScriptエラーコンソールは、通常非常に特殊です。それは何と言いますか? – tadman
@tadman彼は動的に新しいimgタグを作成しています。 –
@APaul以前はその表記を使用していませんでした。面白い。ありがとう! – tadman