Нет описания

callerName.html 836B

1234567891011121314151617181920212223242526272829303132333435363738
  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 style="width: 120px;">来电人:</th>
  16. <td>
  17. <span class="callerName"></span>
  18. </td>
  19. </tr>
  20. </table>
  21. </div>
  22. <script src="../css/laydate/laydate.js"></script>
  23. <script src="../js/adjustHeight.js"></script>
  24. <script>
  25. var callerName = decodeURI(helper.request.queryString("callerName"));
  26. var wid = helper.request.queryString("wid")
  27. if (callerName) {
  28. $(".callerName").text(callerName)
  29. }
  30. </script>
  31. </body>
  32. </html>