| 1234567891011121314151617181920 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8" />
- <title>一键回访页面</title>
- <script src="jquery.min.js"></script>
- </head>
- <body>
- <input id="txtphone" type="text" value="8899" />
- <input type="button" onclick="CallOutPhone()" value="一键回访" />
- <iframe id="framenew" width="0" height="0" src="#"></iframe>
- <script>
- function CallOutPhone() {
- var phone = $("#txtphone").val();
- var srcs = "http://192.168.4.18:4802/callOut/inhtml.html?phone=" + phone;
- $("#framenew").attr("src", srcs);
- }
- </script>
- </body>
- </html>
|