最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - a way to get the secondlevel domain of a website? - Stack Overflow

programmeradmin0浏览0评论

Do you know of a way to get the secondlevel domain of a website via javascript similar to document.location.hostname?

I want to create a mailto bookmarklet that generates an email address from the string "info@" and the secondlevel domain. the issue with document.location.hostname is the "www." prefix.

Do you know of a way to get the secondlevel domain of a website via javascript similar to document.location.hostname?

I want to create a mailto bookmarklet that generates an email address from the string "info@" and the secondlevel domain. the issue with document.location.hostname is the "www." prefix.

Share Improve this question asked Apr 12, 2012 at 22:36 ilzelilzel 32 bronze badges
Add a ment  | 

2 Answers 2

Reset to default 16

Negative number can slice from the end, what gives the second level domain:

var domain=location.hostname.split('.').slice(-2).join('.');

Quick and dirty...

var domain = location.hostname.split('.').slice(1).join('.');

But that's only going to strip off the first part. If you've got more than one level of server name, that's not going to work. By you should be able to figure it out.

发布评论

评论列表(0)

  1. 暂无评论