-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathindex.html
More file actions
29 lines (29 loc) · 826 Bytes
/
index.html
File metadata and controls
29 lines (29 loc) · 826 Bytes
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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Working with EasyUI</title>
<link rel="stylesheet" type="text/css" href="./css/default/easyui.css">
<link rel="stylesheet" type="text/css" href="./css/icon.css">
<script type="text/javascript" src="./assets/jquery.min.js"></script>
<script type="text/javascript" src="./assets/jquery.easyui.min.js"></script>
</head>
<body>
<h2>Forms</h2>
<p>Showing form elements</p>
<input id="tb" style="width:300px">
<script>
$('#tb').textbox({
buttonText:'Search',
iconCls:'icon-search',
iconAlign:'left',
onChange : function(updated, old){
console.log(updated);
},
onClickButton : function(){
alert('the button was pressed')
}
})
</script>
</body>
</html>