-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
64 lines (62 loc) · 1.94 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<script src="https://cdn.bootcss.com/react/0.13.1/react.js"></script>
<script src="https://cdn.bootcss.com/react/0.13.0/JSXTransformer.js"></script>
</head>
<body>
<div id="container"></div>
<script type="text/jsx">
var TestClickComponent = React.createClass({
handleClick: function(event){
var tipE = React.findDOMNode(this.refs.tip);
if(tipE.style.display === 'none'){
tipE.style.display = 'inline';
}else{
tipE.style.display = 'none';
}
event.stopPropagation('');
event.preveDefault();
},
render: function(){
return (
<div>
<button onClick={this.handleClick}>显示|隐藏</button><span>点击测试</span>
</div>
);
}
});
var TestInputComponent = React.createClass({
getInitialState: function(){
return {
inputContent: ''
}
},
changeHandler: function(event){
this.setState({
inputContent: event.target.value
})
event.preventDefault();
event.stopPropagation();
},
render: function(){
return (
<div>
<input type="text" onChange={this.changeHandler}/><span>{ this.state.inputContent }</span>
</div>
);
}
});
React.render(
<div>
<TestClickComponent/>
<br/>
<TestInputComponent/>
</div>,
document.getElementById('container')
)
</script>
</body>
</html>