我正在尝试创建一个示例epub文件,我可以在iBooks中读取该文件,其中包含iBooks将通过localStorage访问的交互式内容。我能够使用chrome和firefox(而不是IE)在浏览器上运行localStorage。
我注意到当文件具有* .xhtml扩展名时,localStorage javascript位不起作用,只有* .html扩展名。
我能够压缩html,opf和ncx并获得一个我可以在数字版本中阅读的epub,并且只抛出与javascript相关的epubcheck错误。
我首先尝试将其导入iBooks,我可以读它,但表单不是交互式的。然后我用谷歌搜索并发现一篇帖子说它需要在iFrame中,我做了。然后我能够在表单中输入文本,但本地存储位不起作用。
以下是2个相关的html文件:
<?xml version="1.0"?>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:epub="http://www.idpf.org/2007/ops">
<head>
</head>
<body onLoad="writeStoredData( 'storedName' );" >
<div epub:type="chapter">
<h1>An HTML5 Ebook Sample</h1>
<p> A simple html5 form that uses local storage to hold user input info</p>
<ul><li>Does a device retain the info when the user moves from page to page? </li>
<li>When the device is turned off and on?</li>
</ul>
<p>In this simple form, the body has an onLoad attribute that calls a function to load the "name" from local storage. When the user enters input from a form the value is updated. When the user closes the page and opens it again the value is still there.</p>
<br/>
<div class="formContainer">
<iframe class="content" src="form.html"></iframe>
</div>
<div id="storedName"></div>
<p>Go to <a href="ebook-sample-pg2.html">page 2</a>
</p>
</div>
<script>
function writeStoredData( id ){
var storedNameDiv = document.getElementById(id);
storedNameDiv.innerHTML = "<p>The stored name is: <span class='selected'>" + localStorage.getItem('somename') + "</span></p>";
}
</script>
</body>
</html>
和表单:(这有写入localStorage的函数)
<?xml version="1.0"?>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:epub="http://www.idpf.org/2007/ops">
<head>
<title>Epub3 Test Input Form</title>
</head><body>
<form>
Please enter your name: <input type="text" id="nameInput"/>
<input type="submit" value="enter" onClick="writeLocal();" onSubmit="window.location.reload()"/>
</form>
<script>
function writeLocal(){
var submittedName = document.getElementById('nameInput').value;
// calling it 'somename' to indicate user defined key
localStorage.setItem('somename', submittedName);
writeStoredData( 'storedName' );
}
function writeStoredData( id ){
var storedNameDiv = document.getElementById(id);
storedNameDiv.innerHTML = "<p>The stored name is: <span class='selected'>" + localStorage.getItem('somename') + "</span></p>";
}
</script>
</body></html>
,这是来自content.opf文件的清单:
<manifest>
<item id="js" href="javascript/ebook-test.js" media-type="text/javascript"/>
<item href="form.html" id="form1" media-type="application/xhtml+xml" properties="scripted"/>
<item href="ebook-sample.html" id="page1" media-type="application/xhtml+xml" properties="scripted"/>
<item href="ebook-sample-pg2.html" id="page2" media-type="application/xhtml+xml" properties="scripted"/>
<item href="toc.ncx" id="ncx" media-type="application/x-dtbncx+xml"/>
<item id="toc" properties="nav" href="toc.xhtml" media-type="application/xhtml+xml"/>
</manifest>
javascript编写的位根本不会出现。我的下一步是尝试在iBooks Author中创建一个文件,但希望能够使用epub执行此操作。我知道iBooks应该能够做到这一点,因为我所做的大部分谷歌搜索都为iBooks Author提供了教程。
另外,我用javascript尝试了各种各样的东西;我看到的大部分示例都在html文件底部的标签中有代码,但我尝试使用单独的* .js文件,并且在head标签中没有任何区别。
任何帮助非常感谢。 bp的
答案 0 :(得分:0)
localStorage
,因此您无法希望在其呈现的EPUB中运行您的代码。
答案 1 :(得分:-2)
你可以使用contenteditable它将是工作。删除输入标记