No Description

callerName.html 865B

123456789101112131415161718192021222324252627282930313233
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <script src="../Script/Common/huayi.load.js"></script>
  6. <script src="../Script/Common/huayi.config.js"></script>
  7. <link href="../css/layer/need/layer.css" />
  8. <link rel="stylesheet" href="../css/init.css" />
  9. <title>来电人</title>
  10. </head>
  11. <body>
  12. <div class="Common">
  13. <table>
  14. <tr>
  15. <th>来电人:</th>
  16. <td><span class="callerName"></span></td>
  17. </tr>
  18. </table>
  19. </div>
  20. <script src="../css/laydate/laydate.js"></script>
  21. <script src="../js/adjustHeight.js"></script>
  22. <script>
  23. var callerName = decodeURI(helper.request.queryString("callerName"));
  24. console.log(callerName)
  25. if (callerName) {
  26. $(".callerName").text(callerName)
  27. }
  28. </script>
  29. </body>
  30. </html>