标签: jquery replace
为什么这段代码不能替换object和embed?
$(".watch-on-mobile").click(function () { $('object' && 'embed').replaceWith($('.video-js')); $('.video-js').css("display", "block") });
提前致谢!
答案 0 :(得分:2)
您无法发明语法并希望库能够猜测。
使用the multiple selector:
$('object,embed').replaceWith($('.video-js'));