我正在尝试将输入按钮的值设置为字符串变量。即“校车指南”;但是当 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');