2011-09-30 42 views
0
//new tmp element that contains the new div 
var tmpDiv = new Element('div',{html:'<div id="video"><iframe title="YouTube video player" width="370" height="208" src="'+video+'" frameborder="0" allowfullscreen></iframe></div>'}); 
//new div (first child of my tmp div) replaces the old 'myDiv' (that can be grabbed from the DOM by $) 
tmpDiv.getFirst().replaces($('video')); 


$$('.showing').removeClass('showing'); 
$('thumb-' + id).addClass('showing'); 

我该如何将其转换为jQuery?我相信它正在使用mootools动态库。如何在mootools的jquery中执行相同的功能/函数

感谢,

回答

0

如果我读这个权利,我觉得这是你在找什么:

$("#video").replaceWith('<div id="video"><iframe title="YouTube video player" width="370" height="208" src="'+video+'" frameborder="0" allowfullscreen></iframe></div>'); 

$('.showing').removeClass('showing'); 
$('#thumb-' + id).addClass('showing'); 
相关问题