IENewTab.html 3.6 KB
Newer Older
W
wangzuohuai 已提交
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73

<!DOCTYPE html>
<html manifest="/websocket.appcache">
<head>
    <meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
    <title>IE NewTab Test</title> 
<style>
       .IETab
       {
              margin: 0px 0 0 0px;
              width: 0px;
              height: 0px;
       }
    </style>

    <link href="css/res.css" rel="stylesheet"/>
    <link rel="shortcut icon" href="{% static 'Files/favicon.ico' %}" type="image/x-icon">

    <script type="text/javascript">
    </script>

    <script src="PluginOK/base.js"></script> 
    <script src="PluginOK/wrl.js"></script>

<script language ="javascript" type ="text/javascript" for="WrlWS" event="onopen()"> 
    showmessage('连接成功');
	WrlVisibilityListener(true);
	WrlScrollListener(true);
	$('body').find('#btn_send').attr('disabled', false);
</script>

<script language ="javascript" type ="text/javascript" for="WrlWS" event="onclose(param1,param2,param3)"> 
	WrlVisibilityListener(false);
	WrlScrollListener(false);
	nAppletRunID = 0;
	nRequstAppletID = 0;
    showmessage(param2);
	$('body').find('#btn_conn').attr('disabled', false);
    $('body').find('#btn_close').attr('disabled', true);
	$('body').find('#btn_send').attr('disabled', true);
</script>

<script language ="javascript" type ="text/javascript" for="WrlWS" event="onmessage(param)">
	DealRecMessage(param);
</script>

<script language ="javascript" type ="text/javascript" for="WrlWS" event="onerror(param)"> 
    showmessage(param);		
</script>
<script type="text/javascript">
    $(document).ready(function(){  
        $("#inp_url").attr("value",GetDefaultConn());
    });  
</script>
 </head>

<body>
<object ID="WrlWS" CLASSID="CLSID:C0971B90-4513-4E2D-A0B6-15B915FE748A" width="0" height="0"></object>  
    <div id="IETab" class="IETab"></div>
    <div class="container">
        <div class="row" style="margin-bottom:20px;">
            <div class="col-sm-6 col-md-5 col-lg-4">
                <div>
                    <input type="text" class="form-control" size="50" style="margin-bottom:3px;" id="inp_url" placeholder="连接" value="ws://localhost:80?sid=123&flag=1" />
                    <button type="button" id="btn_conn" class="btn btn-primary">连接</button>
					<span style="width:10px;">&nbsp;</span>
                    <button type="button" id="btn_close" class="btn btn-danger" disabled="disabled">断开</button>
					<span style="width:10px;">&nbsp;</span>
                    <button type="button" id="btn_clear" class="btn btn-danger">清空通讯记录</button>
                </div>
                <br />
                <div style="margin-bottom:20px;">
74
                    <textarea id="inp_send" class="form-control" style="margin-bottom:3px;min-width:350px;min-height:250px;" placeholder="请输入发送的内容">{"req":"Wrl_IETab","rid":5,"para":{"Type":"0","Title":"IE NewTab","Flag":2,"IframeX":0,"IframeY":0,"Version":"0","Option":"0","Zoom":100,"Url": "http://zorrosoft.com/IENewTab.html","Open":"http://zorrosoft.com"}}</textarea>
W
wangzuohuai 已提交
75 76 77 78 79 80 81 82 83 84 85 86 87
                    <button type="button" id="btn_send" class="btn btn-info btn-block">发送(Ctrl+Enter)</button>
                </div>
            </div>
            <div class="col-sm-6 col-md-7 col-lg-8">
                <div id="div_msgzone" class="panel panel-default">
                    <div class="panel-heading">通讯记录</div>
                    <div id="div_msg" class="panel-body" style="min-height:400px;width:500px;"></div>
                </div>
            </div>
        </div>
    </div>
</body>
</html>