成语大全网 - 汉语词典 - JS 获取字符串中某一段字段

JS 获取字符串中某一段字段

IE8+,及其他浏览器可以用

document.querySelector('meta[name=description]').getAttribute('content')

IE低版本用getElementsByTagName,然后循环找下

使用JQuery可以直接兼容

alert($('meta[name=description]').attr('content'));