這是怎麼回事?我只想輸出www.google.com
。如何在JavaScript中獲取URL的一部分?
<script type="text/javascript"> window.onload=function() {
var links = document.getElementsByTagName("a");
for (var i=0, n=links.length;i<n;i++) {
var string = links[i];
var str = string;
document.write(string);
var spl = string.split("/");
document.write(spl[2]);
}
}
</script>
<a href="http://www.google.com">google</a></br>
你能更有建設性嗎?你收回了什麼輸出/錯誤? –
實際上,我是以http://www.google.com取得document.write(string)的值;但我沒有得到任何輸出document.write(spl [2]);爲什麼這是什麼錯,但無論如何,但我需要輸出只有www.google.com不與http:// – user2440716