切换布局
显示结果
<html> <head> <title>JavaScript String split() Method</title> </head> <body> <script type = "text/javascript"> var str = "Apples are round, and apples are juicy."; var splitted = str.split(" ", 3); document.write( splitted ); </script> </body> </html>