codecamp

W3.JS Http

从服务器读取数据:

w3.getHttpObject(file.js,function)
这个页面上的示例与上一个页面上的示例相同,除了数据是从web服务器请求的:customers.js

填充下拉

实例

<select id="id01">
  <option w3-repeat="customers">{{CustomerName}}</option>
</select>
<script>
w3.getHttpObject("
https://7npmedia.w3cschool.cn/customers1.js", myFunction);
function myFunction(myObject) {
  w3.displayObject("id01", myObject);
}
</script>

尝试一下 »   添加上CSS » »

填充列表

实例

<ul id="id01">
  <li w3-repeat="customers">{{CustomerName}}</li>
</ul>

尝试一下 »   添加上CSS »»

填充表格

实例

<table id="id01">
<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>

尝试一下 »   添加上CSS » »

填充另一个表

实例

<table id="id01">
<tr><th>Title</th><th>Artist</th><th>Price</th></tr>
<tr w3-repeat="cd"><td>{{title}}</td><td>{{artist}}</td><td>{{price}}</td></tr>
</table>

尝试一下 »   添加上CSS » »


W3.JS Display
W3.JS 控制器
温馨提示
下载编程狮App,免费阅读超1000+编程语言教程
取消
确定
目录

关闭

MIP.setData({ 'pageTheme' : getCookie('pageTheme') || {'day':true, 'night':false}, 'pageFontSize' : getCookie('pageFontSize') || 20 }); MIP.watch('pageTheme', function(newValue){ setCookie('pageTheme', JSON.stringify(newValue)) }); MIP.watch('pageFontSize', function(newValue){ setCookie('pageFontSize', newValue) }); function setCookie(name, value){ var days = 1; var exp = new Date(); exp.setTime(exp.getTime() + days*24*60*60*1000); document.cookie = name + '=' + value + ';expires=' + exp.toUTCString(); } function getCookie(name){ var reg = new RegExp('(^| )' + name + '=([^;]*)(;|$)'); return document.cookie.match(reg) ? JSON.parse(document.cookie.match(reg)[2]) : null; }