購物商城首頁的js檔案,

html5_簡丹發表於2017-04-06
  1. 使用text 和 css 可以解析 html 內容和 css 內容
  2. 語法是 text! + 路徑 這個匯出是 xxx.html 檔案的內容
  3. $css! + 路徑 , 這個不需要匯出,自動會渲染到當前引入的當前頁面中
difine([`swiper`,`template`,`flyer`],function(swiper,template,flyer){最外層})

仿寫:在實際工作中有待考慮

define([`text!./home.html`,`$css!./home.css`],function(html){下一層 })

function request () {第二層 }

$.ajax({ 第三層 }) 這裡可以寫好備註 : xxx資料

第三層:

  • type:”get”,
  • url:”http://xxx.xxx.xxxx/xxx/xx.php”,
  • success : function(data){ }

第四層:

  • var result = JSON.parse(data);
  • var slide = result.data.slide;
  • var html = “;
  • for(var i = 0;i < slide.length;i++){ 第五層 }
  • $(`#banner`).html(html);
  • swiperFn();
第五層:

html +=`div class=”swiper-slide”>img src=”`+slide[i].activity.img+`” />


相關文章