我在页面上有一个动态生成的 HTML 部分,其中包含大量重复元素,其类为<div class="paraContent">
我可以访问<head>
CMS 中的此页面,并希望在数组或脚本中指定元素以隐藏某些元素。
到目前为止我的代码:
var excContent = ['0', '1', '25']
$(".paraContent").each(function(index[excContent]) {
$(this).hide();
})
我在页面上有一个动态生成的 HTML 部分,其中包含大量重复元素,其类为<div class="paraContent">
我可以访问<head>
CMS 中的此页面,并希望在数组或脚本中指定元素以隐藏某些元素。
到目前为止我的代码:
var excContent = ['0', '1', '25']
$(".paraContent").each(function(index[excContent]) {
$(this).hide();
})