我有这个html结构
<body class="blog page current-page page-50452">
<div class="content"></div>
</body>
我想扫描 body 元素中的类,然后如果在 body 元素中找到指定的类,则将执行一个过程,概念如下:
//the jquery/javascript version..
var cc = $('body').find('.blog'); //this assume to find the blog class in the body element..
if ( if the blog class has found in the body element then..){
//this is the work that i want to implement, like, it add another div with class and contents after the <div class="content">
$('.content').after('<div></div>').addClass('pagination').html('hello');
}else{
// here if the blog class is not found in the body element.
}
正如你在上面的代码中看到的那样,它首先从body元素中获取所有类,然后扫描类是否存在博客类,如果找到了博客类,则应该添加这个
<div class="pagination">hello</div>
之后
<div class="content">..
到目前为止,不幸的是,上面的代码不起作用,所以目前我正在寻找一些关于我的问题的解决方案,但到目前为止,我似乎很不幸。
请更正我的代码,我在任何建议、建议和想法中都开放。谢谢!