标签:nbsp bsp 今天 his 函数 var style 返回 parse
今天在操作一个元素时,id值是拼接的。
var index = $(this).attr(‘index’); //0
var id = ‘#’ + (index+1); //#01
$(id).attr(‘style’,”);
正确处理:parseInt函数
var index = parseInt($(this).attr(‘index’)); //0
var id = ‘#’ + (index+1); //#1
$(id).attr(‘style’,”);
js 拼接字符串时,本来想要’#1′ ,返回的却是’#01′
标签:nbsp bsp 今天 his 函数 var style 返回 parse
原文地址:http://www.cnblogs.com/daixiaotian/p/6943897.html