| 123456789101112131415161718192021222324252627282930313233 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8" />
- <script src="../Script/Common/huayi.load.js"></script>
- <script src="../Script/Common/huayi.config.js"></script>
- <link href="../css/layer/need/layer.css" />
- <link rel="stylesheet" href="../css/init.css" />
- <title>来电人</title>
- </head>
- <body>
- <div class="Common">
- <table>
- <tr>
- <th>来电人:</th>
- <td><span class="callerName"></span></td>
- </tr>
- </table>
- </div>
- <script src="../css/laydate/laydate.js"></script>
- <script src="../js/adjustHeight.js"></script>
- <script>
- var callerName = decodeURI(helper.request.queryString("callerName"));
- console.log(callerName)
- if (callerName) {
- $(".callerName").text(callerName)
- }
- </script>
- </body>
- </html>
|