# 仿iOS弹窗 **Repository Path**: wt_cloud/ios_popup ## Basic Information - **Project Name**: 仿iOS弹窗 - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2019-12-12 - **Last Updated**: 2021-07-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README ##### 仿iOS插件 > 使用方法 1. 将js脚本引入页面 > 实例代码如下 ``` // 文本内容 var msgjson = { title: "文泰提示", msg: "2019已经过去,让我们展望2020!!
加油!!", buttons: [{ title: "下次提示", color: "red", click: function () { alertShow = true } }, { title: "朕已知晓", click: function () { alertShow = false } }] } // 调用 $.alertView(msgjson); ```