|
|
@@ -0,0 +1,23 @@
|
|
|
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/callScreen/inhtml.html?phone=' + phone;
|
|
|
17
|
+ // document.getElementById("framenew").src=src;
|
|
|
18
|
+ $('#framenew').attr('src',srcs)
|
|
|
19
|
+
|
|
|
20
|
+ }
|
|
|
21
|
+ </script>
|
|
|
22
|
+ </body>
|
|
|
23
|
+</html>
|