我需要包含(通過Javascript)不同的內容,具體取決於從url捕獲的主要類別。使用Javascript確定URL中的/ category/
該網站佈局,像這樣:
http://example.com/Category/Arts/Other/Sub/Categories/
http://example.com/Category/News/Other/Sub/Categories/
http://example.com/Category/Sports/Other/Sub/Categories/
http://example.com/Category/Business_And_Finance/Other/Sub/Categories/
以上不同的主要類別有:
門藝術,新聞,體育和Business_And_Finance
什麼是JavaScript來實現這一目標的最佳途徑。 我需要的可能看起來像下面,
if (category = Arts) {
alert("Arts");
}else if (category = News) {
alert("News");
}...
預先感謝您。
謝謝你的答案,這正是我需要的。並感謝所有在下面回答的人。大多數答案似乎都使用了相同的'url.split'思路。謝謝大家。 – Yallaa 2013-03-14 18:19:35