HTMLとJS ....「新しいボタンを作成」ボタンをクリックするたびに配列値が1つずつ表示される必要があります。今すぐクリックすると、配列の各ボタンが表示されます。クリックごとにJavascript配列の表示ボタン
<div class="container">
<button onClick="myPar()">Directions</button>
<button onClick="make()">Create New Button</button>
</div>
<script>
function myPar() {
var pgp = document.createElement("p");
var txt = document.createTextNode('Click on the "Create New Button" to reveal up to 10 links!!!');
pgp.appendChild(txt);
document.body.appendChild(pgp);
}
function make(){
sit = new Array("kilroerock.com","ultimateguitar.com","premierguitar.com","jhspedals.com","sweetwater.com","guitarcenter.com","musiciansfriend.com","patriots.com","bostonceltics.com")
for (i=0;i<=sit.length-1;i++){
var btn = document.createElement("input");
btn.setAttribute("value",sit[i]);
btn.setAttribute("type","button");
btn.setAttribute("style","background:#1B0D0D;color:white");
btn.setAttribute("onClick","document.location='http://www." + sit[i] + "'")
document.body.appendChild(btn);
}
}
</script>
@cale_b作業だ、 '座っに対して' currentIndexを '確認してください。長さ。 –
@cale_bは、エラーを回避するための条件を追加しました。また、リンクのコード例も更新しました。 –