什么是以下语法var的含义:" div:nth-​​child(" + $ n +")"?

时间:2016-07-12 09:00:47

标签: javascript jquery variables

更具体地说,为什么我的变量两边都需要+号? 这里有一个例子,更多关于我所要求的背景: link

2 个答案:

答案 0 :(得分:0)

您正在有效地定义CSS选择器see docs

选择器必须是一个字符串,$n这里是一个变量,+符号连接(连接在一起)字符串和变量。

答案 1 :(得分:0)

+ operator use for concat two string in javascript and jQuery

Example:

var a = 'Avanish';
var b = a+' Kumar';
console.log('Value of a---->'+a);
console.log('Value of b---->'+b);

output is

 Value of a---->Avanish
 Value of b---->Avanish Kumar

http://www.w3schools.com/js/js_operators.asp

的灯箱处理

How to force addition instead of concatenation in javascript