導航:首頁 > IDC知識 > html顯示來源域名

html顯示來源域名

發布時間:2021-02-22 18:40:15

1、如何輸入域名後,後綴顯示有/index.html

如果你設置的網站 你的主頁是 index.html
那別人輸入你的域名後 就會顯示/index.html
反之,如果你的網站內的主頁是 index.jsp
index.asp index.php defualt.html 等等 那別人輸入你容的域名後 就會顯示這個

2、HTML代碼SRC引用URL問題(獲取當前域名URL)

<script type="text/javascript">
document.write("<img src='/logo/'"+ window.location.host + ".png' />");  
</script>

3、如何在網頁中得到該域名的名稱呢

1.
把Index.html改名成Index.asp,然後修改Include 語句:

<%
response.write "<!--#include file=" + replace(request.servervariables("server_name"),"www.","") + ".html-->"
%>

把「www.」替換成空串。

2.不改名
<!--include file="<script>document.write(document.domain.replace("www.",""));</script>.html"-->
或者
<script>document.write("<!--include file='" + document.domain.replace("www.","") + ".html'-->");</script>

都試試。我在QQ上也給你留了。

4、html代碼如何在網頁中顯示網站網址

用JS獲取當前頁面地內址容
<script language="javascript">

alert(window.location.href);

alert(window.location);

alert(location.href);

alert(parent.location.href);

alert(top.location.href);

alert(document.location.href);

alert(document.URL);

alert(document.title);

</script>

5、用html或配合JS獲取來路域名怎麼寫

不知道你是不是想要這個 location.origin
或者你可以在Console 里查找下 location. 里有沒有你想要的 如location.host.

6、js如何截取地址欄的一級域名,截取後在html中如何顯示

|var url = document.URL;//獲取當前頁面的URL
var domain = url.match(/http[s]?://(.*?)([:/]|$)/);//匹配指定URL的domain

以上方法獲取一個URL地址對應的域名部分

如果只是獲取當前頁面的域名信息,則可以用以下兩種方法

1.location.host
2.document.domain

將信息顯示在html中,以將信息輸出到<div id="test"></div>為例

document.getElementById('test').innerText = location.host;

7、HTML--如何讓地址欄顯示固定域名

你設置默認文檔名稱為123.html就可以了,默認設置的默認文檔名稱是index.html 你把默認的改成123.html 就不用輸入後面的了!望採納!

8、我想在靜態的HTML頁面的首頁添加個可以顯示點擊來源網址的代碼,有沒有這樣的代碼?

有的,自助鏈,或者自助鏈接就有這個功能,如只需要此功能可以自己修改一下代碼

與html顯示來源域名相關的知識