2010-12-06 63 views
5

有誰知道如何通過使用沒有jQuery的Javascript來獲取當前頁面的url和標題!?獲取URL,通過Javascript獲取標題不是jQuery


<script type="text/javascript"> 
    var title = document.getElementsByTagName('title')[0].innerHTML; 
    var url = document.location.href 
    socializ(encodeURIComponent('+href+'),encodeURIComponent('+title+')) 
</script> 

只是不工作...需要幫助...

回答

8

location object是你的URL的片之後,在做什麼:

var currentURL = window.location.href; 

而對於冠軍,document.title

var title = document.title; 
+0

thx但這裏有什麼問題呢: 2010-12-06 16:32:56

2
var title = document.getElementsByTagName('title')[0].innerHTML; 
var url = document.location.href; 
4

window.location.href爲URL和document.title爲標題。