JS的常用函数

Posted 动起来mygod

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JS的常用函数相关的知识,希望对你有一定的参考价值。

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>第一个javascript计算页面</title>
</head>
<body>

<script type="text/javascript">

var s1="abc";
alert(typeof s1);
alert(s1.length);
var s2=new String("def");
alert(typeof s2);
alert(s2.length);
var ymd="2019-12-29".split("-");
for (var i=0;i<ymd.length;i++){
alert(ymd[i]);
}
/*String.prototype.getLength=function () {
return this.getLength();
}
var l1=s1.getLength();
alert(l1);
var l2=s2.getLength();
alert(l2);*/
alert("abcdf".charAt(0));//a
alert("sunyuhuan".substr(2,3));//nyu
alert("sunyuhuan".substring(2,3));//n
alert("sun-yuhuan".replace("-",‘,‘))

</script>
</html>

以上是关于JS的常用函数的主要内容,如果未能解决你的问题,请参考以下文章

JS中Math函数的常用方法

让你瞬间提高工作效率的常用js函数汇总

js中定义函数的常用方式

总结JS 常用函数

js操作url的常用函数

js里常用函数之高阶函数