我正在使用 MacBook Air,并且一直在研究 ePub 的创建。我从 github 获取了 epub3 样板的副本,请单击此处。我在一个 javascript 文件中添加了以下内容
var txt = document.createTextNode(" This text was added to the DIV.");
document.getElementById('contenty').appendChild(txt);
<script src='../js/main.js'></script>
当我在 iBooks 中打开已编译的 epub 时,它不会显示This text was added to the DIV.
在 div 中#contenty
。
使用Kitabu它实际上可以工作,但是有没有办法让 Javascript 在 iBooks 中工作?
谢谢