2015-09-30 81 views
-1

我想使用jQuery在我的網站標題中添加元標記。我該怎麼做?如何使用jQuery添加元標記?

在此先感謝。

+1

這似乎已經在這裏覆蓋 - http://stackoverflow.com/a/7063880/2588199 – russell

+0

請在發佈前進行搜索,或在此如果您已經查看過,請查看網站明確詢問的問題列表。 –

回答

0

試試這個

<script type="text/javascript"> 
$(document).ready(function() { 
    $("head").append("<meta name=viewport content=width=400, initial-scale=0.45, minimum- scale=0.45/><link rel=apple-touch-icon href=/images/customIcon.png/><meta name=apple-mobile-web-app-capable content=no /><meta name=apple-mobile-web-app-status-bar-style content=black-translucent /><link rel=apple-touch-icon-precomposed href=/images/customIcon.png/> "); 
}); 

+0

我用過,但它不適合我。 :( –

-1
<script type="text/javascript"> 
$(document).ready(function() {  

    $("meta[name='og:title']").attr('content', 'my new title'); 
}); 
</script> 
+0

@SuperBiasedMan我已編輯我的答案檢查現在。 – sandeepsure

相關問題