1. 程式人生 > >隨機動態插入js

隨機動態插入js

場景:如下圖所示。

1.需要通過js動態插入script,因為廣告可能會改,所以需要動態插入;

2.由於可以接多家廣告,所以需要分配展示概率。

動態插入js

這裡只講jquery的方法,getScript()

例:$.getScript("js/index.js");

更多詳情

隨機函式封裝

// 封裝隨機函式
randomFn(num) {
    // num:概率
    var randomNum = Math.round(Math.random()*100);
    console.log(randomNum);
    console.log(num);
    if(randomNum < num) {
        return true
    }else {
        return false
    }
}

完整邏輯如下:

if(that.randomFn(70)) {
    //70%
    console.log(true);
}else {
    //30%
    console.log(false);
}