javascript - Warum gibt es in setTimeout-Klammern einfache und doppelte Anführungszeichen und Pluszeichen?
phpcn_u1582
phpcn_u1582 2017-05-19 10:14:49
0
4
627
<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="utf-8" />
    <title></title>
</head>
<style type="text/css">
    .top-nav {
        font-size: 14px;
        font-weight: bold;
        list-style: none;
    }
    .top-nav li {
        float: left;
        margin-left: 1px;
    }
    .top-nav li a {
        line-height: 34px;
        text-decoration: none;
        background: #3f240e;
        color: #fff;
        display: block;
        width: 80px;
        text-align: center;
    }
    .top-nav ul {
        list-style: none;
        display: none;
        padding: 0;
        position: absolute;
        height: 0;
        overflow: hidden;
    }    
    .top-nav li a:hover {
        background: url(images/slide-bg.png) 0 0 repeat-x;
    }
    .note {
        color: #3f240e;
        display: block;
        background: url(images/slide-bg.png) 0 0 repeat-x;
    }
    .corner {
        display: block;
        height: 11px;
        background: url(images/corner.png) 31px 0 no-repeat;
    }
</style>
<script type="text/javascript">
     window.onload = function() {
         var Lis = document.getElementsByTagName("li");
         for(var i=0; i<Lis.length; i++) {
             Lis[i].onmouseover = function() {
                 var u = this.getElementsByTagName("ul")[0];
                 if(u != undefined) {
                 u.style.display = "block";
                 AddH(u.id);    
                 }
                 
             }

             Lis[i].onmouseleave = function() {
                 var u = this.getElementsByTagName("ul")[0];
                 if(u != undefined) {
                 SubH(u.id);    
                 }
                 
             }
         }
     }
    function AddH(id) {
        var ulList = document.getElementById(id);
        var h = ulList.offsetHeight;
        h += 1;
        if(h<=42) {
            ulList.style.height = h + "px";
            setTimeout("AddH('"+id+"')",10);
        }
        else {
            return;
        }
        
    }

    function SubH(id) {
        //setTimeout();
    }
</script>
<body>
    <ul class="top-nav">
    <li><a href="#"><span class="note">慕课网</span></a></li>
    <li><a href="#">课堂大厅</a></li>
    <li><a href="#">学习中心</a>
    <ul id="mnuUL">
        <span class="corner"></span>
        <li><a href="#">前端课程</a></li>
        <li><a href="#">手机开发</a></li>
        <li><a href="#">后台编程</a></li>
    </ul>
    </li>
    <li><a href="#">关于我们</a></li>
    </ul>
</body>
</html>
phpcn_u1582
phpcn_u1582

Antworte allen(4)
刘奇

function AddH(id) {

var ulList = document.getElementById(id);
var h = ulList.offsetHeight;
h += 1;
if(h<=42) {
    ulList.style.height = h + "px";
    setTimeout("AddH('"+id+"')",10);
}
else {
    return;
}   

}
这是你自己写的函数,然后里面你使用 setTimeout("AddH('"+id+"')",10)来调用定时调用AddH函数。最外层的那个双引号是可以有、也可以没有,这个影响不大,就像上面那位说的一样,setTimeout 可以接受字符串作为代码运行。然后里面的那对单引号,是因为你函数里面的document.getElementById(id)根据id获取标签对象需要使用到,比如说如果你的id为hellow,然后你传递进去的值在不加单引号的情况下就为hellow,传到内部就变成document.getElementById(hellow) ,这样子是不对的,因为document.getElementById(参数)这个函数的接收参数要是一个字符串类型 ,所以一定要加上引号才可以 ,当你加上了引号之后传入进去的值就为document.getElementById('hellow') ,这样子通过脚本语法才可以获取到标签对象。 至于最里面的双引号跟加号就是属于连接符了,就像比如一个字符串 "hell" ,想要在尾部加入一个变量var i = "ow" ,如果是直接加入的话 "hell"i 这样子写的话是会报错的,所以就需要用到我们的连接符+号了,要这样子写 "hell" + i 组成的新字符串就为"hellow"。在你的代码中因为你的变量id是写在中间,所以需要使用到两个加号来进行连接。其实你这个的单双引号还可以有其他的写法,如果你会使用转义符的话,在这里就不给你详细解释了,你以后会慢慢的了解的!

習慣沉默

setTimeout 可以接受字符串作为代码运行。

var id = 2; 
var a = "AddH('"; 
var b = id; 
var c = "')"; 
var todo = a + b + c; 
console.log(todo); 

var alertGenerator = function(str){
    return "alert('" + str + "')"; // alertGenerator('0v0') => 'alert("0v0")'; 
}

var alertHello = alertGenerator('hello'); 

setTimeout(alertHello, 2000); 

但是并不建议传递字符串给 setTimeout

setTimeout("AddH('"+id+"')",10); 

// => 
setTimeout(function(){
    AddH(id); 
}, 10); 
我想大声告诉你

不加的话,就函数自执行了

曾经蜡笔没有小新


如果第一个参数是个字符串,那么就相当于eval,是可以自执行的。


出处

Neueste Downloads
Mehr>
Web-Effekte
Quellcode der Website
Website-Materialien
Frontend-Vorlage