asp.net下String.prototype.split()的兼容问题
作者:
IE下的String.prototype.split()函数bug
IE的String.prototype.split()函数bug
脚本:
"a:b:c".split(/(:)/)
Firefox输出:
["a",":","b",":","c"]
IE7/8(含IE9兼容的模式)输出:
a,b,c
IE9 中文本框中出现了 \n时 会把他保留 需要去掉 而IE7/8(含IE9兼容的模式) 中并无出现
比如
12 12
12 12
12 12\n12 12 这是IE9 中 而IE7/8(含IE9兼容的模式)是12 1212 12
您可能感兴趣的文章:
- js中substr,substring,indexOf,lastIndexOf,split,replace的用法详解
- javascript中slice(),splice(),split(),substring(),substr()使用方法
- SQLServer中的切割字符串SplitString函数
- javascript String split方法误操作
- 几个常用的JavaScript字符串处理函数 - split()、join()、substring()和indexOf()
- javascript Split方法,indexOf方法、lastIndexOf 方法和substring 方法
- C# 中string.split用法详解