2016-02-08 68 views
-1

我有我的web應用程序中的按鈕鏈接。我從本地主機運行它。源代碼是這樣,我認爲這正常(無故障):打開新標籤鏈接Facebook從本地主機當按鈕Onclick

<a href="facebook.com" style="text-decoration:none;" target="_blank"><input type="button" value="Pembuatan Akun Facebook" class="tombol" style="width:200px !important;"></a> 

我想要什麼,當我點擊該按鈕,瀏覽器將打開新的標籤頁,並連接到Facebook頁面。 但我得到,它鏈接到的網址:

http://localhost/dewata/facebook.com(我的web應用程序在文件夾dewata)。

enter image description here

不facebook.com。

任何想法會發生什麼?

回答

1

對於外部鏈接,您需要完整的href協議,否則瀏覽器會在您的站點上指定一個名爲'facebook.com'的文件。

<a href="http://Facebook.com">... 
相關問題