0

我有这个:

<div class="vid">

<video> bla bla bla </video>

</div>

我必须解开这个视频标签,所以我尝试了:

$( "video" ).unwrap();

控制台窗口中的结果是:

TypeError: undefined is not a function
message: "undefined is not a function"
stack: (...)
get stack: function () { [native code] }
set stack: function () { [native code] }
__proto__: Error

有什么线索吗?

非常感谢!

4

1 回答 1

1

好像$没有定义。你确定 jQuery 已经加载了吗?

你可以试试console.log这些:

console.log(window.jQuery); // What's the output of this?
console.log($); // What's the output of this? 
console.log(jQuery('video')); // What's the output of this? 

这是调试问题的好方法。

于 2014-08-27T15:06:23.717 回答