-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest.html
70 lines (52 loc) · 1.53 KB
/
test.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
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=unicode">
<style type="text/css">
body {
font-size: 40px;
}
.CHINESE_HOVER_CLASS {
background: yellow;
}
#show_pop {
position: absolute;
-webkit-border-radius: 5px;
background: #282828;
width: 350px;
padding: 7px;
color: #FFF;
display: none;
z-index: 99999;
}
#show_pop .han {
font-size: 20px;
}
#show_pop .pinyin {
font-size: 20px;
}
#show_pop .translation {
font-size: 16px;
}
</style>
<script src="CH_DIC.js"></script>
<script src="DictController.js"></script>
</head>
<body>
jì yì bàng<br />
你好
女人
一个字符串数组。该数组是通过在 separator 指定的边界处将字符串 stringObject 分割成子串创建的。返回的数组中的字串不包括 separator 自身。
但是,如果 separator 是包含子表达式的正则表达式,<a href="#">那么</a>返回的数组中包括与这些子表达式匹配的字串(但不包括与整个正则表达式匹配的文本)。
<div id="show_pop">
</div>
<script text="text/javascript">
var b = document.body;
var DIC = new CH_DIC();
var DIC_CONTROLLER = new DicController(DIC);
var LAYOUT = new LayoutController("show_pop");
window.onload = function() {
LAYOUT.traverseAllChildren(b);
}
</script>
</body>
</html>