我将如何从下一行的 this.className 中删除第一个字符?第一个变量是_,然后是一个数字。我只想将数字分配给className。
className = this.className;
此外,我将更"$('.inter').html(window[link[className]]);"
改为使用数组而不是 className 变量。下面的代码是使用带有索引的数组作为变量的正确方法吗?
$('.inter').html(window[link[className]]);
我将如何从下一行的 this.className 中删除第一个字符?第一个变量是_,然后是一个数字。我只想将数字分配给className。
className = this.className;
此外,我将更"$('.inter').html(window[link[className]]);"
改为使用数组而不是 className 变量。下面的代码是使用带有索引的数组作为变量的正确方法吗?
$('.inter').html(window[link[className]]);
No need to use jQuery for that, just plain ol' javascript using .substring
var trimmed = this.className.substring(1);