高新区管委会,以5.0标准版为基准,从双汇项目拷贝

callOut.html 678B

1234567891011121314151617181920
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8" />
  5. <title>一键回访页面</title>
  6. <script src="jquery.min.js"></script>
  7. </head>
  8. <body>
  9. <input id="txtphone" type="text" value="8899" />
  10. <input type="button" onclick="CallOutPhone()" value="一键回访" />
  11. <iframe id="framenew" width="0" height="0" src="#"></iframe>
  12. <script>
  13. function CallOutPhone() {
  14. var phone = $("#txtphone").val();
  15. var srcs = "http://192.168.4.18:4802/callOut/inhtml.html?phone=" + phone;
  16. $("#framenew").attr("src", srcs);
  17. }
  18. </script>
  19. </body>
  20. </html>