在找到第n个子jquery时用变量替换n

时间:2014-06-19 11:19:54

标签: javascript jquery

我有这个Jquery表达式

var splitindex = 9;
var mElems = $('#columns div:nth-child(n+9)');

这里' 9'是硬编码的, 如何用splitindex替换9。 我想为n;

的动态值做这个

5 个答案:

答案 0 :(得分:0)

这样:

$('#columns div:nth-child(n+'+splitindex +')')

答案 1 :(得分:0)

试试这个

$("#columns div:nth-child(n+"+splitindex+")");

答案 2 :(得分:0)

就像添加字符串'string'+ val +'remaining'

一样使用它
var mElems = $('#columns div:nth-child(n+'+ splitindex +')');

答案 3 :(得分:0)

使用此:

var mElems = $('#columns div:nth-child(n+'+splitindex +')');

答案 4 :(得分:0)

你可以这样做:

var splitindex = 9;
$("#columns div:nth-child(n+"+splitindex+")");