JS错误记录 - 微博发布

Posted CarpenterZoe

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS错误记录 - 微博发布相关的知识,希望对你有一定的参考价值。

 

 

    <style>
    *{ margin: 0; padding: 0;}
    #ul1{
        width: 400px;
        height: 400px;
        border: 1px solid #000;
        margin: 10px auto;
        padding: 4px;
        overflow: hidden;
    }

    /* #ul li 选择器写错了!!! */  

    #ul1 li{
        border-bottom: 1px #999 dashed;
        padding: 4px;
        list-style: none;
        overflow: hidden;
        filter:alpha(opacity=0); 
        opacity: 0;
        /* border-bottom: 1px dashed;  border没有设置颜色!!! */
        /* filter: alpha = 0; 格式错误!! */
    }
    </style>

    <script src="move2.js"></script>

    <script>
    window.onload = function()
    {
        var oTxt = document.getElementById(txt1);
        var oBtn = document.getElementById(btn1);
        var oUl = document.getElementById(ul1);

        oBtn.onclick = function() 
        {
            var oLi = document.createElement(li);

            oLi.innerhtml = oTxt.value;
            oTxt.value = ‘‘;

            if(oUl.children.length>0)
            {
                // oUl.insertBefore(oLi, oUl.childNodes[0])  
                // 注意childNodes 和 children的区别
                oUl.insertBefore(oLi, oUl.children[0]);
            }
            else
            {
                oUl.appendChild(oLi); // 添加的子节点值是不是这样写的?
            };

            var iHeight = oLi.offsetHeight;
            oLi.style.height = 0;

            startMove(oLi, {height: iHeight}, function()
            {
                startMove(oLi, {opacity: 100})
            });
        };
    };
    </script>
</head>
<body>
<textarea id="txt1" cols="30" rows="4"></textarea>
<input type="button" value="发布" id="btn1">
<ul id="ul1"></ul>
</body>

 

以上是关于JS错误记录 - 微博发布的主要内容,如果未能解决你的问题,请参考以下文章

我想要把用户在文本框填写的内容分享到新浪微博、腾讯微博、QQ空间、人人网,js代码是怎样的?求帮助

错误记录Android Studio 编译报错 ( Could not determine java version from ‘11.0.8‘. | Android Studio 降级 )(代码片段

错误记录Android Studio 编译报错 ( Could not determine java version from ‘11.0.8‘. | Android Studio 降级 )(代码片段

中继现代片段错误(期望对象包含数据....)

常用Feed流架构实现

谷歌浏览器调试jsp 引入代码片段,如何调试代码片段中的js