技術(shù)頻道導(dǎo)航
HTML/CSS
.NET技術(shù)
IIS技術(shù)
PHP技術(shù)
Js/JQuery
Photoshop
Fireworks
服務(wù)器技術(shù)
操作系統(tǒng)
網(wǎng)站運營

贊助商

分類目錄

贊助商

最新文章

搜索

使用JQuery或JS修改網(wǎng)頁title和meta標簽的content內(nèi)容

作者:admin    時間:2018-3-29 9:19:21    瀏覽:

網(wǎng)頁title和meta標簽的content內(nèi)容是可以通過JQuery和JS來修改的,本文將分別介紹它們的實現(xiàn)方法。

網(wǎng)頁meta標簽

網(wǎng)頁meta標簽

修改meta標簽的content內(nèi)容

例如網(wǎng)頁的meta標簽原來是這樣寫的:

<meta property="fb:app_id" content="*************" />
<meta property="og:url" content="" />
<meta property="og:site_name" content="" />
<meta property="og:type" content="" />
<meta property="og:image" content="" />
<meta property="og:title" content="" />
<meta property="og:description" content="" />

那么我們可以用JQuery或JS來修改meta標簽的content內(nèi)容。

JQuery實現(xiàn)代碼如下:

$('meta[property="og:description"]').attr('content',"***" );

或:

$("meta[property='og:description']").attr('content', "***");

知識延伸: "property=" 在 Chrome 中無效?

有網(wǎng)友提示,meta里 "property=" 在 Chrome 中無效,需要這樣寫才正確:

$("meta[name='og:description']").attr('content', "***");

即是把 "property=" 改為 "name=" 。

JS實現(xiàn)代碼如下:

var metaList = document.getElementsByTagName("meta");
for (var i = 0; i < metaList.length; i++) {
  if (metaList[i].getAttribute("property") == "fb:app_id") {
    metaList[i].content = "somenewcontent";
  }
}

JS修改網(wǎng)頁title

無需jQuery就能修改title,代碼如下:

document.title = "123";

點擊按鈕動態(tài)改變,代碼如下:

$("#myBtn").click(function(){
  document.title = "123";
});

myBtn為按鈕的id。

如果只有一個按鈕(或點擊任意一個按鈕時觸發(fā)事件),代碼也可以這樣寫:

$("button").click(function(){
  document.title = "123";
});

jQuery修改網(wǎng)頁title

當(dāng)然,我們也可以用jQuery來實現(xiàn),代碼如下:

$('title').html("123");

 

標簽: meta標簽  
相關(guān)文章
    x
    • 站長推薦
    /* 左側(cè)顯示文章內(nèi)容目錄 */