js里面用到了那些函数
时间: 2023-12-10 09:06:20 浏览: 67
JavaScript 中包含很多内置函数和开发者自定义的函数,以下是一些常用的函数:
1. 字符串函数:例如 `charAt()`、`concat()`、`slice()`、`substr()` 等等。
2. 数组函数:例如 `push()`、`pop()`、`shift()`、`unshift()`、`splice()` 等等。
3. 数学函数:例如 `Math.abs()`、`Math.ceil()`、`Math.floor()`、`Math.round()`、`Math.max()`、`Math.min()` 等等。
4. 日期函数:例如 `Date()`、`getFullYear()`、`getMonth()`、`getDate()`、`getDay()` 等等。
5. 条件语句函数:例如 `if()`、`else()`、`switch()`、`case()` 等等。
6. 循环函数:例如 `for()`、`while()`、`do...while()` 等等。
7. DOM 操作函数:例如 `getElementById()`、`getElementsByTagName()`、`createElement()`、`appendChild()` 等等。
8. 事件函数:例如 `onclick()`、`onload()`、`onchange()`、`onsubmit()` 等等。
除此之外,还有很多其他的函数和方法,具体使用哪些函数取决于开发者的需求和实际情况。
阅读全文