전체 W3Data API 참조
기능 | 기술 |
---|
w3DisplayData | HTML에서 데이터를 표시 |
w3IncludeHTML | HTML에 HTML을 표시합니다 |
w3Http | 서버에서 데이터를 읽어 |
전체 W3Data 속성 참조
속성 | 기술 |
---|
{{}} | 데이터를 어디에 표시를 정의 |
W3 반복 | 데이터를 어디에 반복을 정의 |
W3-포함 - HTML을 | 여기서 HTML을 포함하도록 정의합니다 |
예
w3DisplayData
<!DOCTYPE html>
<html>
<script src="http://www.w3ii.com/lib/w3data.js"></script>
<body>
<div id="id01">
{{firstName}} {{lastName}}
</div>
<script>
w3DisplayData("id01", {"firstName" : "John", "lastName" : "Doe"});
</script>
</body>
</html>
»그것을 자신을 시도 w3Http
<!DOCTYPE html>
<html>
<link rel="stylesheet"
href="http://www.w3ii.com/lib/w3.css">
<script src="http://www.w3ii.com/lib/w3data.js"></script>
<body>
<table id="id01" class="w3-table w3-bordered w3-striped">
<tr>
<th>Customer</th>
<th>City</th>
<th>Country</th>
</tr>
<tr w3-repeat="customers">
<td>{{CustomerName}}</td>
<td>{{City}}</td>
<td>{{Country}}</td>
</tr>
</table>
<script>
w3Http("customers.php",
function () {
if (this.readyState == 4 && this.status == 200) {
var myObject = JSON.parse(this.responseText);
w3DisplayData("id01", myObject);
}
});
</script>
</body>
</html>
»그것을 자신을 시도 w3IncludeHTML
<!DOCTYPE html>
<html>
<script src="http://www.w3ii.com/lib/w3data.js"></script>
<body>
<div w3-include-HTML="h1.html"></div>
<div w3-include-HTML="content.html"></div>
<script>
w3IncludeHTML();
</script>
</body>
<html>
»그것을 자신을 시도