var the_url = prompt("What’s the URL?","");
提示用户输入一个URL,假设用户输入"http://www.programbbs.com/doc/";
var first_split = the_url.split("//");
将用户输入的字符串分割成两块:first_split[0]是"http:",first_split是"www.programbbs.com/doc/." var without_resource = first_split; //提取出数组中的第2个元素,所以现在without_resource是"www.programbbs.com/doc/."
var second_split = without_resource.split("/");
将without_resource分割成3块:www.programbbs.com,javascript, 和index.html.现在你可以看到split的用途了吧?
var domain = second_split[0];
现在我们提取出新数组中的第1个元素就可得出域名.