所以我有一个与此事件有关的按钮:

onmousedown="hideElements('\x22cartview\x22,\x22other\x22')"


然后此函数hideElements:

function hideElements(what)
  {
  var whichElements=[what];
  alert(whichElements[0]);
  }


我希望它提醒“购物车视图”,但它提醒


  “购物车视图”,“其他”


我知道arguments对象,但是在这种情况下,我不知道如何使用它来访问以逗号分隔的单个字符串。可能有一个简单的解决方案,但我对此很陌生。谢谢!

最佳答案

onmousedown="hideElements([ 'cartview', 'other' ])"


接着:

function hideElements(what) {
    alert(what[0]);
}

10-06 04:29