我写了这篇大论。 该公司在主页上课以罚款。 我在最后写了警示。
如果我去其他主页,这一警示信息必须发出,但我正在发出警告信息,如果我取消职务,提醒所有页页上的信息,那么我守则中的任何错误都是错误的?
window.onload = function(){
var yellows = document.getElementById( magazine-brief ).getElementsByTagName( h2 );
var signUp = document.getElementById( signup-link );
if (yellows != undefined && signUp != undefined){
function animeYellowBar(num){
setTimeout(function(){
yellows[num].style.left = "0";
if(num == yellows.length-1){
setTimeout(function(){
signUp.style.webkitTransform = "scale(1)";
},num*250);
}
}, num * 500);
}
for (var i = 0; i < yellows.length; i++){
animeYellowBar(i);
}
}
alert( hi );
}