react.js測試
<html>
<head>
<title>hellow</title>
<script src=”https://cdnjs.cloudflare.com/ajax/libs/react/0.13.3/JSXTransformer.js”></script>
<script src=”https://cdnjs.cloudflare.com/ajax/libs/react/0.13.3/react.js”></script>
<meta charset=”utf-8″ />
</head>
<body>
<div id=”root”>
</div>
<script type=”text/jsx”>
//建立組建
var TestButtonComponent = React.createClass({
handleClick:function(event){
var tipsE = React.findDOMNode(this.refs.tips);
if(tipsE.style.display === `none`){
tipsE.style.display = `inline`;
}else{
tipsE.style.display = `none`;
}
event.stopPropagation(); //阻止事件冒泡
event.preventDefault(); //阻止預設事件
},
render:function(){
return (
<div>
<button onClick={this.handleClick}>顯示|隱藏</button><span ref=”tips”>測試button</span>
</div>);
}
});
var TestInputComponent = React.createClass({
getInitialState:function(){
return {
inputContent:`ii`
};
},
handleChange:function(event){
this.setState({
inputContent:event.target.value
});
},
render:function(){
return (
<div>
<input type=”text” onChange={this.handleChange} /> <span>{this.state.inputContent}</span>
</div>
);
}
});
//呼叫組建
React.render(
<div>
<TestButtonComponent />
<br/> <br/>
<br/>
<TestInputComponent />
</div>,
document.getElementById(`root`)
);
</script>
</body>
<html>
相關文章
- 測試測試測試測試測試測試
- App測試、Web測試和介面測試一般測試流程APPWeb
- 介面測試測試流程
- Flutter 學習之路 - 測試(單元測試,Widget 測試,整合測試)Flutter
- 介面測試,負載測試,併發測試,壓力測試區別負載
- 黑盒測試、白盒測試、單元測試、整合測試、系統測試、驗收測試的區別與聯絡...
- 測試CMS同步測試CMS同步測試CMS同步
- (一)效能測試(壓力測試、負載測試)負載
- 認識軟體測試步測試測試 (轉)
- 測試面試-測試用例面試
- 【軟體測試】——介面測試
- 效能測試:分散式測試分散式
- Jmeter介面測試+效能測試JMeter
- 介面測試 - 引數測試
- 去測試化≠測試失業
- 微服務測試之介面測試和契約測試微服務
- React.JS 18新特性ReactJS
- React.js系列學習ReactJS
- 小白測試系列:介面測試與效能測試的區別
- 軟體測試中的功能測試和非功能測試
- API 測試 | 瞭解 API 介面測試 | API 介面測試指南API
- 測試 之Java單元測試、Android單元測試JavaAndroid
- 軟體測試中功能測試的測試工作流程
- 軟體測試之功能測試、效能測試經驗談
- 功能測試、自動化測試、效能測試的區別
- 測試平臺之介面測試
- 軟體測試-測試計劃
- 微服務測試之效能測試微服務
- 測試物件和測試級別物件
- 介面測試要測試什麼?
- 效能測試之測試指標指標
- google測試分享-分層測試Go
- React.js 小書 Lesson21 – ref 和 React.js 中的 DOM 操作ReactJS
- 測試
- 軟體效能測試常見指標。在哪裡測試測試?指標
- API測試:瞭解API介面測試與API介面測試指南API
- 白盒測試、灰盒測試以及黑盒測試的區別
- 4大軟體測試策略的特點和區別(單元測試、整合測試、確認測試和系統測試)