IE8+,及其他浏览器可以用
document.querySelector('meta[name=description]').getAttribute('content')IE低版本用getElementsByTagName,然后循环找下
使用JQuery可以直接兼容
alert($('meta[name=description]').attr('content'));IE8+,及其他浏览器可以用
document.querySelector('meta[name=description]').getAttribute('content')IE低版本用getElementsByTagName,然后循环找下
使用JQuery可以直接兼容
alert($('meta[name=description]').attr('content'));