使用jquery查找语义标记标记

时间:2016-07-26 05:49:09

标签: jquery html

我想使用jQuery找到语义标记标记。

HTML:

<header id="header">Header</header>
<footer id="footer">Footer</footer>

我尝试了以下所有代码,但它无效:

jQuery(this).find("header")
jQuery(this).find("#header")

2 个答案:

答案 0 :(得分:1)

尝试在document.ready function

下包装你的代码
$(function() {
  // your code
});

答案 1 :(得分:0)

这个$('header,footer,#header,#footer')为什么这不起作用呢?