forked from mrlan/EnglishPal
刷新屏幕,点击上下篇,加入生词库,停止阅读(更改)
parent
cdf6180901
commit
d402bb45cb
|
@ -29,6 +29,7 @@ function onReadClick() {
|
|||
function onChooseClick() {
|
||||
isChoose = !isChoose;
|
||||
}
|
||||
|
||||
if (performance.navigation.type == 1) { //如果网页刷新,停止播放声音
|
||||
stopRead()
|
||||
Reader.stopRead();
|
||||
}
|
|
@ -49,8 +49,8 @@
|
|||
{# <div class="alert alert-warning" role="alert">Congratulations! {{ message }}</div>#}
|
||||
{# {% endfor %}#}
|
||||
|
||||
<button class="btn btn-success" id="load_next_article" onclick="load_next_article();stopRead()"> 下一篇 Next Article </button>
|
||||
<button class="btn btn-success" id="load_pre_article" onclick="load_pre_article();stopRead()" > 上一篇 Previous Article </button>
|
||||
<button class="btn btn-success" id="load_next_article" onclick="load_next_article();Reader.stopRead()"> 下一篇 Next Article </button>
|
||||
<button class="btn btn-success" id="load_pre_article" onclick="load_pre_article();Reader.stopRead()" > 上一篇 Previous Article </button>
|
||||
|
||||
<p><b>阅读文章并回答问题</b></p>
|
||||
<div id="text-content">
|
||||
|
@ -97,7 +97,7 @@
|
|||
<p><b>收集生词吧</b> (可以在正文中划词,也可以复制黏贴)</p>
|
||||
<form method="post" action="/{{ username }}/userpage">
|
||||
<textarea name="content" id="selected-words" rows="10" cols="120"></textarea><br/>
|
||||
<input type="submit" value="把生词加入我的生词库" onclick="stopRead()"/>
|
||||
<input type="submit" value="把生词加入我的生词库" onclick="Reader.stopRead()"/>
|
||||
<input type="reset" value="清除"/>
|
||||
</form>
|
||||
{% if session.get['thisWord'] %}
|
||||
|
|
Loading…
Reference in New Issue