Compare commits
No commits in common. "13dd679d491afc0acbc06f9573024a75be093b41" and "69961f9f407203f9506b49ec513cd67836f7ffc1" have entirely different histories.
13dd679d49
...
69961f9f40
|
@ -56,8 +56,7 @@ function delete_word(theWord) {
|
|||
removeWord(theWord);
|
||||
} else {
|
||||
$("#p_" + theWord).remove();
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
});
|
||||
}
|
||||
|
@ -117,7 +116,6 @@ function removeWord(word) {
|
|||
if (element_to_remove !== null) {
|
||||
element_to_remove.remove();
|
||||
}
|
||||
page_reload();
|
||||
}
|
||||
|
||||
function renderWord(word) {
|
||||
|
@ -173,8 +171,4 @@ function compareWord(first, second) {
|
|||
return first.word < second.word ? -1 : 1;
|
||||
}
|
||||
return 0;
|
||||
}
|
||||
//通过在单词本删除单词后加入刷新页面功能,可以使文本高亮实时取消
|
||||
function page_reload(){
|
||||
location.reload();
|
||||
}
|
|
@ -124,7 +124,7 @@
|
|||
<form method="post" action="/{{ username }}/userpage">
|
||||
<textarea name="content" id="selected-words" rows="10" cols="120"></textarea><br/>
|
||||
<button class="btn btn-primary btn-lg" type="submit" onclick="Reader.stopRead()">把生词加入我的生词库</button>
|
||||
<button class="btn btn-primary btn-lg" type="reset" onclick="clearSelectedWords();page_reload()">清除</button>
|
||||
<button class="btn btn-primary btn-lg" type="reset" onclick="clearSelectedWords()">清除</button>
|
||||
</form>
|
||||
{% if session.get['thisWord'] %}
|
||||
<script type="text/javascript">
|
||||
|
|
|
@ -1,4 +0,0 @@
|
|||
id,title_length,description_length,language,attachments,resolved
|
||||
Flask==2.0.3,17,11,pony==0.7.16,0,0
|
||||
id,title_length,description_length,language,attachments,resolved
|
||||
Flask==2.0.3,17,11,pony==0.7.16,0,0
|
|
Loading…
Reference in New Issue