EPUB分数捕捉

问题描述:

我通过Adobe InDesign CC创建了一个EPUB。将项目导出到EPUB后,我提取了该文件,以便可以插入用于练习的(html,javascript)页面。有人请帮助我如何设法从epub(可能是得分)向网站投掷价值(如果在线),并在离线时将价值(分数)存储在epub中。EPUB分数捕捉

<form action="#" method="post"> 
    <section id="1" epub:type="item"> 
      <p>1. smile - smiled <label id="checker" style="color:red"></label></p> 
      <input type="radio" id="myRadio" name="c1" value="1" /> 
      <label>YES</label> 
      <input type="radio" id="myRadio" name="c1" value="0" /> 
      <label>NO</label><br/>     
    </section> 
    <section id="2" epub:type="item"> 
      <p>2. dance - danced <label id="checker2" style="color:red"></label></p> 
      <input type="radio" id="myRadio2" name="c2" value="1" /> 
      <label>YES</label> 
      <input type="radio" id="myRadio2" name="c2" value="0" /> 
      <label>NO</label><br/>  
    </section> 
    <section id="3" epub:type="item"> 
      <p>3. rise - rised <label id="checker3" style="color:red"></label></p> 
      <input type="radio" id="myRadio3" name="c3" value="1" /> 
      <label>YES</label> 
      <input type="radio" id="myRadio3" name="c3" value="0" /> 
      <label>NO</label><br/> 
    </section> 
    </div> 

</form> 

继承人的JavaScript:

temp = 0; 
if (getRadioVal(document.getElementById('demoForm'), 'c1') === "1") { 
    temp = temp + 1;  
} else{ 
    document.getElementById('checker').innerHTML = "| wrong"; 
} 

if (getRadioVal(document.getElementById('demoForm'), 'c2') === "1") { 
    temp = temp + 1; 
} else{ 
    document.getElementById('checker2').innerHTML = "| wrong"; 
} 
if (getRadioVal(document.getElementById('demoForm'), 'c3') === "0") { 
    temp = temp + 1; 
} else{ 
    document.getElementById('checker3').innerHTML = "| wrong"; 
} 

document.getElementById("score").innerHTML = temp; 

这个问题已经在一些论坛的Adobe讨论,答案好像你不能:https://forums.adobe.com/thread/1939249