我需要包含(通过 Javascript)不同的内容,具体取决于从 url 捕获的主要类别。
该网站的布局如下:
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/
上述不同的主要类别是:
艺术、新闻、体育和商业_And_Finance
在javascript中完成此操作的最佳方法是什么。我需要的可能如下所示,
if (category = Arts) {
alert("Arts");
}else if (category = News) {
alert("News");
}...
先感谢您。