我有一个body元素,其class属性根据当前页面而变化,我需要提取当前类别的ID号(“term-21”)并使用JS或jQuery将其保存到变量中。
我该怎么做?
HTML:
<body class="archive tax-product_cat term-name term-21"></body>
JS变量应该是:
var catNumber = "21";
答案 0 :(得分:2)
如果我得到你的核心,你可以这样做:
const cat = (document.body.className.match(/term-(\d+)/) || [,0])[1]
console.log(cat)
<body class="archive tax-product_cat term-name term-21"> </body>
答案 1 :(得分:0)
import * as Logger from '@types/bunyan'