でHTMLを追加)プリントアレイと、私は(JSの配列を印刷して、ちょうどすべての要素をHTMLでいくつかのデータを追加したいのjQuery
私が使用するコードは次のとおりです。
<script type="text/javascript">
$(document).ready(function() {
var testArray = ["test1","test2","test3","test4"];
for(var i=0;i<testArray.length;i++){
document.write(" " +testArray[i]+"<br />").html("is the best");
}
});
</script>
が、それは動作しません。
どこにhtmlを出力しようとしていますか? –
'document.write()'呼び出しを '.html()'(これはjQueryのことです)と連鎖しようとすると意味がありません。なぜあなたは 'document.write()'をまったく使っていますか? –
どのように私はdocument.write()なしで印刷するつもりですか? – t0s