其他不多说,直接上例子,我引用的是layer弹框的移动端插件
一、页面<head>调用下面方法
<script src="/js/layer.js"></script> <script> function alertFn(msg) { layer.open({ content: msg , shadeClose: false, btn: [‘OK‘], yes: function () { location.href = "default.aspx?i=" + Math.random(); }, }); } </script>
二、后台调用方法
ClientScript.RegisterStartupScript(ClientScript.GetType(), "", "<script>alertFn(‘前台弹出的信息‘);</script>");
时间: 2024-10-11 04:14:30