2016-12-20 13 views
0

Я создал EPUB через Adobe InDesign CC. После экспорта проекта в 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; 

ответ