入力ボタンの値を文字列変数に設定しようとしています.ie "A Guide to the School Bus"; しかし、HTML が読み込まれると、最初の単語だけがボタンに表示されます。私のコードを以下に示します。助けてくれてありがとう。
var title="A Guide to the School Bus";
var htmlString= "<div class="+title+ ">"+"<input type="+"button "+"value="+title+" onclick=loadBook()>"+"</div>";
$(htmlString).appendTo(attachPoint);
そして、アタッチポイントは、次を使用して取得した HTML の参照です。
var attachpoint=document.querySelector('.buttonAttachPoint');