Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このコードでオブジェクトと埋め込みの両方を置き換えないのはなぜですか?
$(".watch-on-mobile").click(function () { $('object' && 'embed').replaceWith($('.video-js')); $('.video-js').css("display", "block") });
前もって感謝します!
構文を発明して、ライブラリが推測することを期待することはできません。
複数セレクターを使用します。
$('object,embed').replaceWith($('.video-js'));