18

我将如何从下一行的 this.className 中删除第一个字符?第一个变量是_,然后是一个数字。我只想将数字分配给className。

className = this.className; 

此外,我将更"$('.inter').html(window[link[className]]);"改为使用数组而不是 className 变量。下面的代码是使用带有索引的数组作为变量的正确方法吗?

$('.inter').html(window[link[className]]);
4

1 回答 1

71

No need to use jQuery for that, just plain ol' javascript using .substring

var trimmed = this.className.substring(1);
于 2013-05-23T02:35:33.770 回答