forked from fex-team/fis-amd-demo
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathshim.html
30 lines (26 loc) · 929 Bytes
/
shim.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
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<html lang="en">
<head>
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8">
<title>Amd plugin demo</title>
<link rel="stylesheet" type="text/css" href="/modules/libs/bootstrap/css/bootstrap.css">
<link rel="stylesheet" type="text/css" href="/modules/libs/bootstrap/css/bootstrap-theme.css">
<!--STYLE_PLACEHOLDER-->
</head>
<body>
<link rel="import" href="partials/_nav.html?__inline">
<div id="main">
<button id="button" class="btn btn-primary">BootStrap 按钮</button>
</div>
<script type="text/javascript" src="lib/require.js"></script>
<!--SCRIPT_PLACEHOLDER-->
<!--RESOURCEMAP_PLACEHOLDER-->
<script type="text/javascript">
require(['jquery', 'bootstrap'], function ($) {
$('#button').click(function() {
alert('click');
});
});
</script>
</body>
</html>