87,989
社区成员
发帖
与我相关
我的任务
分享
$("li a").click(function(){
var ImgId=$(this).attr("id");
alert(ImgId);
$("img").attr("src", ImgId);
}); //<img>的src 用attr ie、谷歌兼容正常
$("dd a").click(function(){
var srcid=$(this).attr('id');
alert(srcid);
$(".THEembed").attr("src",srcid);
}); //<embed>的src 用attr ie、谷歌不兼容
var embedsrc_str='<embed id="embedsrc" src='+'http://player.youku.com/player.php/sid/XMzMwOTg3MjI4/v.swf'+' width="720" height="593" />';
$("#video").html(embedsrc_str);