Notice: Undefined variable: bid in /home/wwwroot/cczh004/wwwroot/public/class.php on line 3
搜索列表
-
javascript用正则表达式把1234567890替换为abcdefghij
【正则表达式】复制代码 代码如下:<script> alert('0123456789'.replace(/(\d)/g, function ($1){return "abcdefghij".split("")[$1];})); </script>
javascript用正则表达式把1234567890替换为abcdefghij