-
Notifications
You must be signed in to change notification settings - Fork 9
/
index.html
197 lines (197 loc) · 6.2 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
<!DOCTYPE html>
<html>
<head>
<link href="favicon.ico" mce_href="favicon.ico" rel="bookmark" type="image/x-icon" />
<link href="favicon.ico" mce_href="favicon.ico" rel="icon" type="image/x-icon" />
<link href="favicon.ico" mce_href="favicon.ico" rel="shortcut icon" type="image/x-icon" />
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=0">
<title>YDdict2Anki</title>
<style type="text/css">
*{
margin: 0px;
padding: 0px;
}
header{
margin: 10px auto;
width: 1000px;
margin-bottom: 50px;
font-weight: bolder;
font-size: 50px;
text-align: center;
}
.container{
border:black solid 0px;
margin: 10px auto;
width: 1000px;
text-align: center;
overflow: hidden;
}
.navi{
width: 10%;
float: left;
}
.parser{
width: 90%;
float: left;
border:red solid 0px;
}
.yd,.anki-container{
width: 95%;
min-height: 200px;
font-size: 10px;
float: left;
}
.yd{
color:#F44C4C;
border:#F44C4C solid 2px;
}
.anki-container{
color: #0059B1;
border:#0059B1 solid 2px;
overflow: hidden;
margin-top: 5px;
}
.anki-table{
width: 100%;
text-align: left;
border-collapse:collapse;
}
.anki-table td,.anki-table th{
border:#0059B1 solid 1px;
}
.anki-table th{
text-align: center;
font-size: 20px;
}
.anki-text{
border:0px;
width: 100%;
height: 200px;
}
.step2{
margin-top: 60px;
}
.navi p{
text-align: left;
font-size: 16px;
}
footer{
border:grey solid 0px;
margin: 20px auto;
width: 1000px;
text-align: center;
font-size: 15px;
}
</style>
<script type="text/javascript">
var ankiTable=''
var ankiText=''
//ankiTable和ankiText互换
function yd2anki(yd){
var anki=document.getElementById('anki')
var xmls=loadXML(yd.value)
if (!xmls) return
var items=xmls.getElementsByTagName('item')
var item={}
var tmp=''
//console.log(items)
//解析items
for(var i in items){
if(typeof(items[i])!='object') continue
//console.log(typeof items[i])
item.word=items[i].getElementsByTagName('word')[0].firstChild?items[i].getElementsByTagName('word')[0].firstChild.nodeValue:''
item.phonetic=items[i].getElementsByTagName('phonetic')[0].firstChild?items[i].getElementsByTagName('phonetic')[0].firstChild.nodeValue:''
item.trans=items[i].getElementsByTagName('trans')[0].firstChild?items[i].getElementsByTagName('trans')[0].firstChild.nodeValue:''
item.tags=items[i].getElementsByTagName('tags')[0].firstChild?items[i].getElementsByTagName('tags')[0].firstChild.nodeValue:''
if(item){
item.value=item.word+"\t"+item.phonetic+"\t"+item.trans+"\t"+item.tags
item.value=item.value.replace(/\n/g,'<br>')
tmp+=item.value+"\n"
}
}
//判断是否有解析数据
if (tmp) {
ankiTable=''
ankiText=''
}else{
return
}
//本次有解析数据开始处理数据
//处理<br>
var patt=new RegExp('( (adj\.))|( (n\.))|( (adv\.))|( (prep\.))|( (pron\.))|( (v\.))|( (conj\.))|( (vi\.))|( (vt\.))|( (pl\.))|( (c\.))|( (num\.))','g')
tmp=tmp.replace(patt,function(a){
return a.replace(/^ +/,'<br>')
})
//替换首尾空白字符
tmp=tmp.replace(/(^\s*)|(\n\s*$)/g,'')
ankiText="<textarea onmouseout='this.parentNode.innerHTML=ankiTable' class='anki-text'>"+tmp+"</textarea>"
//转换成table
tmp=tmp.replace(/\t/g,'</td><td>')
var tmplist=tmp.split("\n")
//console.log(tmplist)
ankiTable="<table onmousedown='this.parentNode.innerHTML=ankiText' class='anki-table'><tr><th>index</th><th>word</th><th>phonetic</th><th>trans</th><th>tags</th></tr><tr><td>"
for(i=0;i<tmplist.length;i++){
var num=i+1
ankiTable+=i==0?num+"</td><td>"+tmplist[i]+"</td></tr>":"<tr><td>"+num+"</td><td>"+tmplist[i]+"</td></tr>"
}
ankiTable+="</table>"
//默认以表格展示
anki.innerHTML=ankiTable
console.log(ankiTable)
}
//xml解析
function loadXML(xmlString){
var xmlDoc=null;
//判断浏览器的类型
//支持IE浏览器
if(!window.DOMParser && window.ActiveXObject){ //window.DOMParser 判断是否是非ie浏览器
var xmlDomVersions = ['MSXML.2.DOMDocument.6.0','MSXML.2.DOMDocument.3.0','Microsoft.XMLDOM'];
for(var i=0;i<xmlDomVersions.length;i++){
try{
xmlDoc = new ActiveXObject(xmlDomVersions[i]);
xmlDoc.async = false;
xmlDoc.loadXML(xmlString); //loadXML方法载入xml字符串
break;
}catch(e){
console.log(e)
}
}
}//支持Mozilla浏览器
else if(window.DOMParser && document.implementation && document.implementation.createDocument){
try{
/* DOMParser 对象解析 XML 文本并返回一个 XML Document 对象。
* 要使用 DOMParser,使用不带参数的构造函数来实例化它,然后调用其 parseFromString() 方法
* parseFromString(text, contentType) 参数text:要解析的 XML 标记 参数contentType文本的内容类型
* 可能是 "text/xml" 、"application/xml" 或 "application/xhtml+xml" 中的一个。注意,不支持 "text/html"。
*/
domParser = new DOMParser();
xmlDoc = domParser.parseFromString(xmlString, 'text/xml');
}catch(e){
console.log(e)
}
}
else{
return null;
}
return xmlDoc;
}
</script>
</head>
<body>
<header>有道词典转Anki记忆库</header>
<div class="container">
<div class="navi">
<h1 class="step1">Step1:</h1>
<p>把有道词典导出的XX.xml选择用记事本打开后粘贴到右边的红色文本框中→</p>
<h1 class="step2">Step2:</h1>
<p>点击右边的蓝色表格会出现Anki格式的文本<br>全选后另存为txt文件即可<br>(注意编码为utf-8)</p>
</div>
<div class="parser">
<textarea oninput="yd2anki(this)" class="yd" id="yd"></textarea>
<div class="anki-container" id="anki"></div>
</div>
</div>
<footer><a target="_blank" href="https://zhuanlan.zhihu.com/p/24288262">详细使用说明</a> By 易小猫 </footer>
</body>
</html>