好吧,这就是脚本(顺便说一下,用 JavaScript 编写)
function verbox(origen,vi,titulo){
$("#fullbox").fadeIn('fast');
if (vi=="video") {
$("#previewbox").fadeIn('slow');
$("#previewboxinner").innerHTML='<iframe width="420" height="315" src="http://www.youtube.com/embed/'+origen+'?rel=0" frameborder="0" allowfullscreen></iframe>';
}
else if (vi=="foto"){
$("#previewbox").fadeIn('slow');
$("#previewboxinner").innerHTML='<center><img src="'+origen+'" alt="'+titulo+'"><br>+'titulo'+</center>';
}
}
我知道这是一个错字,但我找不到它,你能帮我找到它吗?谢谢。