今天小看了一下js

一段小小的js代码(实现闪烁功能!Too easy)
<script language="">
var yourwords = "来看一下我,闪闪烁烁的好可爱哦!!!";
var speed = 700;
var control = 1;

function flash(){
    if (control == 1){
    window.status=yourwords;
     control=0;
    }
    else{
        window.status="";
        control=1;
    }
    setTimeout("flash()",speed);
}
</script>

原文地址:https://www.cnblogs.com/xinyult/p/im.html