Files
apt-nl-map/static/Magic4/Sketch/HMI_Sketch_Left_RemovePath_Sch2_RemoveDualPath.html

42 lines
1.8 KiB
HTML
Raw Normal View History

2024-12-04 10:21:04 +08:00
<!DOCTYPE html>
<html lang="en" id="container" onmousedown="startDrag(event)" onmouseup="stopDrag(event)" onmousemove="dragging(event)" style="overflow-x: hidden;
overflow-y: hidden; ">
<head>
<meta charset="UTF-8">
<link rel="stylesheet" href="../css/bootstrap.min.css"/>
<link rel="stylesheet" href="../css/btn.css"/>
<link rel="stylesheet" href="../css/sketchBtn.css"/>
<script type="text/javascript" type="text/javascript">
function SketchLeftRemovePathSch2_RemoveDualPathPostMessage(str){
parent.window.postMessage(
str,
"*" //or "www.parentpage.com"
);
}
function Button_RemoveDualPathOK(){
var str="RemovePathSch2_RemoveDualPath:OK#";
SketchLeftRemovePathSch2_RemoveDualPathPostMessage(str);
}
function Button_RemoveDualPathCancel(){
var str="RemovePathSch2_RemoveDualPath:Cancel#";
SketchLeftRemovePathSch2_RemoveDualPathPostMessage(str);
}
</script>
<title>Title</title>
</head>
<body>
<tr>
<p>
<!-- <input type=button class="btn" id="Button_RemoveDualPathOK" value="确认删除" onclick=Button_RemoveDualPathOK() style="background:lightblue"></input> -->
<input type=button class="btn" id="Button_RemoveDualPathOK" value="RemoveDualPathOK" onclick=Button_RemoveDualPathOK() style="background:lightblue"></input>
</p>
</tr>
<tr>
<p>
<!-- <input type=button class="btn" id="Button_RemoveDualPathCancel" value="取消删除" onclick=Button_RemoveDualPathCancel() style="background:lightcoral"></input> -->
<input type=button class="btn" id="Button_RemoveDualPathCancel" value="RemoveDualPathCancel" onclick=Button_RemoveDualPathCancel() style="background:lightcoral"></input>
</p>
</tr>
</body>
<script src="../js/drag.js"></script>
</html>