當前位置:成語大全網 - 英語詞典 - JS 獲取字符串中某壹段字段

JS 獲取字符串中某壹段字段

IE8+,及其他瀏覽器可以用

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

IE低版本用getElementsByTagName,然後循環找下

使用JQuery可以直接兼容

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