Commit 8c246bee authored by JingChao's avatar JingChao

Updates angular/hlsUtil.md

Auto commit by GitBook Editor
parent 4923f0d9
......@@ -4,6 +4,7 @@ APP开发会出现很多功能相同的函数和组件,现封装了很多公
- 函数参数为`( 身份证号码 )`
- 返回值为`( 身份证校验结果 )`,通过返回空,不通过返回具体内容。
- 调用如下
```javascript
function checkIdCard(){
var result =hlsUtil.isCardID(342623198712122312);
......@@ -17,6 +18,7 @@ APP开发会出现很多功能相同的函数和组件,现封装了很多公
- 函数参数为`( 格式字符串 )``yyyy-MM-dd`
- 返回值为`( 格式化后的时间 )``2017-09-08`
- 调用实例如下
```javascript
function dataFormat() {
var date = new Date;
......@@ -28,6 +30,7 @@ function dataFormat() {
- 函数参数为`( 数组下标 )`
- 返回`( 新的数组 )`
- 调用实例如下
```javascript
function arrayRemove() {
var array=['1','2','3'];
......@@ -39,6 +42,7 @@ function arrayRemove() {
- 函数参数为`( 对象 )`
- 返回`( 字符串 )`
- 调用实例如下
```javascript
function objToString(){
var obj={
......@@ -53,6 +57,7 @@ function objToString(){
- 函数参数为`( 数组、元素 )`
- 返回 `true of false`
- 调用实例如下
```javascript
function inArray(){
var array=['1','2','3'];
......@@ -65,6 +70,7 @@ function objToString(){
- 参数为`( 手机号 )`
- 通过正则表达式校验 返回 `true of false`
- 调用实例如下
```javascript
function phoneNumber(){
alert(hlsUtil.phoneNumber(18325379820));
......@@ -75,6 +81,7 @@ function phoneNumber(){
- 参数为`( 手机号 )`
- 通过正则表达式校验 返回 `true of false`
- 调用实例如下
```javascript
function phoneNumber86(){
alert(hlsUtil.phoneNumber86('+8618325379820'));
......@@ -85,6 +92,7 @@ function phoneNumber(){
- 参数为`( 邮箱地址 )`
- 通过正则表达式校验 返回 `true of false`
- 调用实例如下
```javascript
function isEmailAddress(){
alert(hlsUtil.isEmailAddress('jingchao.wu@hand-china.com'));
......@@ -95,6 +103,7 @@ function isEmailAddress(){
- 参数为`( 图片地址,回调函数 )` **第二个参数为回调函数 **
- 在回电函数中`( 返回图片的base64 )`
- 调用实例如下
```javascript
vm.imageTo64 = function () {
hlsUtil.getImageToBase64('build/img/login/icon.png', function (imgdata) {
......@@ -107,3 +116,4 @@ function isEmailAddress(){
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment