我试图在按下包含 div 的按钮时生成选项卡(也可以关闭)。目前我用来生成 div 的是:
function addStream(name) {
if ($("#stream_"+name)[0]!=null) { return; };
var d=$("<div></div>");
$(d).attr("id", "stream_"+name);
$(d).attr("class", "container_small");
$(d).append("<iframe width='560' height='340' style='border: 0; outline=0' frameborder='0' scrolling='no' src='http://cdn.livestream.com/embed/"+name+"?layout=4&height=340;width=560&autoplay=false'></iframe>");
$(d).append("<iframe width='300' height='340' style='border: 0; outline=0' frameborder='0' scrolling='no' src='http://cdn.livestream.com/embed/"+name+"?layout=6&height=400&width=300&showTimestamp=true'></iframe>");
$(d).append("<br><div style=\"display: inline-block; margin: 4px;\"><input type=\"button\" value=\"close\" onclick='removeStream(\""+name+"\")'></input></div>");
$("#view").append(d);
}
Id 就像在可关闭选项卡中的此信息一样。请原谅我的基本知识;我还在学习。