>
標題>
function Reader(content, cID, stopID, continueID) {
this.conLoad = document.getElementById(cID);
this.stopBtn = document.getElementById(stopID);
this.ContinueBtn = document.getElementById(ContinueID);
this.content = 內容;
this.index = 0;
var t = this;
this.stopBtn.onclick = (
function () {
return function () {
t.stopReader(t);
};
})(t);
this.continueBtn.onclick = (
function () {
return function () {
t.continueReader(t);
};
})(t);
}
Reader.prototype = {
startReader : function () {
var t = this;
t.toId = setInterval(function () {
if (t.content[t.index]) {
t.conLoad.innerHTML = t.content[t.index];
}
t.index ;
if (t.content.length == t.index) {
clearInterval(t.toId);
t.conLoad.innerHTML = "【未完成待續】 ;
}
}, 200);
},
stopReader : function (t) {
t.flag = true;
clearInterval(t.toId);
},
ContinueReader : function (t) {
if (t.flag)
t.startReader();
t.flag = false;
}
};
var content = "蒙古親王僧格林沁慓悍勇猛,他率領的軍隊向來號稱能徵慣戰,八旗兵、綠營他都看不上眼,更何況那些臨時招募的練勇。可偏偏就是這些他眼中的烏合之眾,這些年在江南戰果累累,最終攻克江寧陣地,渴望對太平軍作戰的全勝。 ,昔日的聲威銳減。 ,朝野誹謗訥四起,物議點頭,僧格林沁聽了十分得意,趕緊打發富明阿以視察滿城為由,江寧實地了解。後向僧格林沁作了一份報告。 btnContinue").startReader();
腳本>
;