问答详情
源自:7-9 字符串分割split()

第三个要求没有反应

<!DOCTYPE HTML>

<html>

<head>

<meta http-equiv="Content-Type" content="text/html; charset=utf-8">

<title>无标题文档</title>

<script type="text/javascript">

var mystr="86-010-85468578";

document.write(  mystr.split("-")    + "<br />");

document.write( mystr.split("")     + "<br />");

document.write( mystr,split("",3) );

</script>

</head>

<body>

</body>

</html>


提问者:Yeungchiho 2018-10-26 21:07

个回答

  • fenghai233
    2018-10-26 21:56:05
    已采纳

    document.write( mystr,split("",3) );应改为document.write( mystr.split("",3) );

  • 慕丝7210716
    2020-04-20 17:43:58

    分割3次,limit要取数值为4