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