jquery 中 怎样将字符串装换成数字?var shoucang = $("#shoucang").html();
                    
                    shoucang = shoucang+1;
                    $("#shoucang").html(shoucang)我获div里面的值,在jquery中与数字1相加,最后变成字符串相加了。
然后我又试了减法,字符串减数字就可以就可以。
在jquery中怎么转换啊?怎么解决啊?