0

为什么这段代码不替换对象和嵌入?

$(".watch-on-mobile").click(function () {
$('object' && 'embed').replaceWith($('.video-js'));
$('.video-js').css("display", "block")
});

提前致谢!

4

1 回答 1

2

您不能发明一种语法并希望库猜测。

使用多重选择器

$('object,embed').replaceWith($('.video-js'));
于 2013-03-18T17:48:19.500 回答