1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- <!DOCTYPE HTML>
- <html>
- <head>
- <meta charset="UTF-8">
- <title>SeaJS - 调用模板演示</title>
- <script src="../js/sea.js"></script>
- <script>
- seajs.config({
- base: '../test-all',
- alias: {
- "template": "cmd-alias/build/template"
- }
- });
- </script>
- </head>
- <body>
- <div id="doc">loading..</div>
- <script>
- // 演示JSON数据
- var data = {
- title: '国内要闻',
- time: (new Date).toString(),
- list: [
- {
- title: '<油价>调整周期缩至10个工作日 无4%幅度限制',
- url: 'http://finance.qq.com/zt2013/2013yj/index.htm'
- },
- {
- title: '明起汽油价格每吨下调310元 单价回归7元时代',
- url: 'http://finance.qq.com/a/20130326/007060.htm'
- },
- {
- title: '广东副县长疑因抛弃情妇遭6女子围殴 纪检调查',
- url: 'http://news.qq.com/a/20130326/001254.htm'
- },
- {
- title: '湖南27岁副县长回应质疑:父亲已不是领导',
- url: 'http://news.qq.com/a/20130326/000959.htm'
- },
- {
- title: '朝军进入战斗工作状态 称随时准备导弹攻击美国',
- url: 'http://news.qq.com/a/20130326/001307.htm'
- }
- ]
- };
- // 加载index模板
- seajs.use('./cmd-alias/build/index', function (index) {
- document.getElementById('doc').innerHTML = index(data);
- });
- </script>
- </body>
- </html>
|