自動參考頁面URL如何引用當前頁面的URL?<a></a><a></a>標籤
我在幾頁上有一個共享微博按鈕。我希望能夠自動引用當前頁面的URL,因此當用戶點擊「發送此頁面」時,會在Twitter推文框中生成該URL。我希望這樣做的原因是我可以從一個地方管理按鈕,而不是幾個頁面。
HTML(目前,該網址是手動粘貼到該鏈接的href標記。
<a href="http://dangfoods.com/coconutchips.php" title="These chips are great for you HEALTH!! #dangfoods" class="tweetDialog" target="_blank"><div id="tweets-btn" class="custom-button">Tweet This Page</div></a>
當前的Javascript
// We bind a new event to our link
$('a.tweetDialog').click(function(e){
//We tell our browser not to follow that link
e.preventDefault();
//We get the URL of the link
var loc = $(this).attr('href');
//We get the title of the link
var title = escape($(this).attr('title'));
//We trigger a new window with the Twitter dialog, in the middle of the page
window.open('http://twitter.com/share?url=' + loc + '&text=' + title + '&', 'twitterwindow', 'height=450, width=550, top='+($(window).height()/2 - 225) +', left='+$(window).width()/2 +', toolbar=0, location=0, menubar=0, directories=0, scrollbars=0');
});
你的問題是什麼? – ComFreek
對不起@ComFreek,我想引用這個URL,所以當用戶點擊twitter按鈕時,這個URL會自動放入對話框彈出框中。目前,我必須手動將網址放入href屬性中。我寧願擁有它,我可以在全球管理一個按鈕,而不是每個頁面。 –