jquery把int类型转换成字符串类型的方法

jQuery中把获取的number类型数据转换成字符串类型

var val=$(“#id).val();
If(typeof val==”number”){
val+=' ';
}

相关推荐