我有这个页面,我正在尝试链接到 /our-other-brands 页面,并且我有这个 actionscript 代码。所有链接都在工作,但我们在顶部导航中的其他品牌......这是我似乎无法理解它在做什么的行
var sectionName:String = me.currentTarget.name.substr(0, -6);
这是下面函数的所有代码
// navigation button pressed
function navButtonPress(me:MouseEvent):void {
var sectionName:String = me.currentTarget.name.substr(0, -6);
trace(sectionName + ' button press');
// jump to section
switch(sectionName) {
case 'home':
navigateToURL(new URLRequest('/'), "_self");
break;
case 'products':
navigateToURL(new URLRequest('/petmate-products'), "_self");
break;
case 'our':
navigateToURL(new URLRequest('/our-other-brands'), "_self");
break;
case 'tips':
navigateToURL(new URLRequest('/category/tips-from-the-expert'), "_self");
break;
case 'news':
navigateToURL(new URLRequest('/news-press'), "_self");
break;
case 'about':
navigateToURL(new URLRequest('/about-petmate'), "_self");
break;
case 'retailers':
navigateToURL(new URLRequest('http://retail.petmate.com'), "_self");
break;
}
}
如果有人知道为什么链接不起作用,我将非常感谢任何帮助。