wzp
2021-07-19 58ec6ffd2dc6a3e490e28026dd559352678a273d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
        "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh-CN">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <title>Button</title>
    <link rel="stylesheet" href="../../builds/css/icon.min.css"/>
</head>
<body>
<p/>Style 1:&nbsp;
<a class="bsgrid_icon icon_view" onclick="alert('View!');">View</a>
&emsp;
<a class="bsgrid_icon icon_about" onclick="alert('Long icon!');">Long icon</a>
 
<p/>Style 2:&nbsp;
<button type="button" class="bsgrid_icon icon_view" onclick="alert('View!');">View</button>
&emsp;
<input class="bsgrid_icon icon_about" type="button" onclick="alert('Long icon!');" value="Long icon"/>
</body>
</html>