鑫苑新版本前端代码

callOut.html 699B

1234567891011121314151617181920212223
  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 = document.getElementById("txtphone").value;
  15. var phone=$('#txtphone').val()
  16. var srcs='http://192.168.4.18:4802/callout/inhtml.html?phone=' + phone;
  17. // document.getElementById("framenew").src=src;
  18. $('#framenew').attr('src',srcs)
  19. }
  20. </script>
  21. </body>
  22. </html>