30 lines
1.1 KiB
HTML
30 lines
1.1 KiB
HTML
<!DOCTYPE html>
|
|
<html lang="en">
|
|
<head>
|
|
<meta charset="UTF-8">
|
|
<script type="text/javascript" src="../jquery-2.1.0.min.js"></script>
|
|
<script type="text/javascript" src="../jquery.cookie.js"></script>
|
|
<script type="text/javascript" src="../Lu_Math_Driver.js"></script>
|
|
<script type="text/javascript">
|
|
function receiveMessage(event) {
|
|
console.log(event);
|
|
if(event.data.event_id=="fleet_top"){
|
|
switch(event.data.data.v1){
|
|
case "GetFleetInfo":{
|
|
window.open('HMI_Fleet_Right_GetFleetInfo_Main.html','RightMainIframe');
|
|
}break;
|
|
case "GetMain":{
|
|
window.open('HMI_Fleet_Right_Main.html','RightMainIframe');
|
|
}break;
|
|
}
|
|
}
|
|
}
|
|
window.addEventListener("message", receiveMessage, false);
|
|
</script>
|
|
<title>Title</title>
|
|
</head>
|
|
<body>
|
|
HMI_Fleet_Right
|
|
<iframe id="RightMainIframe" name="RightMainIframe" width="900" height="450" src="HMI_Fleet_Right_Main.html" frameborder="2" scrolling="auto"></iframe>
|
|
</body>
|
|
</html> |