4

当我单击“新建”按钮时,开始 jQuery 操作:

1.)创建DIV并将Class“块”添加到DIV

2.) 附加到“.container”

3.) 将容器中的此 DIV 从不透明度 0 设置为 1

JsFiddle 示例

HTML

<div class="panel">
   <button class='new'> + </button>
</div>
<div class="container">
</div>

CSS

.block {
   margin: 0px;
   width: 200px;
   display: inline-block;
   border-right:thin dashed #aaa;
   opacity: 0;
}
.panel {
   position: absolute;
   top: 100px;
   padding: 5px;
   color: #FFF;
   font-size: 15px;
   background: #d30;
   height: 30px;
   cursor:pointer;
}
.container {
   position: absolute;
   top: 145px;
   left: 0px;
}
button{
   font-size: 20px;
   padding: 0px;
}

jQuery

function createChatBox(title) {
   $(" <div />" ).attr("id","block_"+title)
    .addClass("block")
    .html('<div class="title">text1 '+title+'</div>')
    .appendTo($( ".container" , {
        css: {
            display: 'inline-block',
            opacity: 0
        }
    }).animate({ opacity: 1  }) );
}

$(".new").click(function(){
     createChatBox('text2');
 });
4

3 回答 3

3

您需要将 appendTo 部分更改为:

    .appendTo(".container" , {
        css: {
            display: 'inline-block',
            opacity: 0
        }
    }).animate({ opacity: 1  });
于 2012-04-23T14:42:56.560 回答
2

这是你想要的:

jQuery:

function createChatBox(title) {

    $(" <div />" )
        .attr("id","block_"+title)
        .addClass("block")
        .html('<div class="title">text1 '+title+'</div>')
        .css({
            display: 'inline-block',
            opacity: 0
        })
        .appendTo($( ".container" ))
        .animate({ opacity: 1  });

}

输出:

在此处输入图像描述

于 2012-04-23T14:46:55.097 回答
1

您的代码似乎被破坏了,一些不匹配的括号 / {}。这是一个修复程序,这是您想要的吗?http://jsfiddle.net/mamadrood/bckHD/1/

于 2012-04-23T14:42:50.650 回答