42 lines
1.8 KiB
HTML
42 lines
1.8 KiB
HTML
<!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 SketchLeftRemovePathSch1_RemoveAllPathPostMessage(str){
|
|
parent.window.postMessage(
|
|
str,
|
|
"*" //or "www.parentpage.com"
|
|
);
|
|
}
|
|
function Button_RemoveAllPathOK(){
|
|
var str="RemovePathSch1_RemoveAllPath:OK#";
|
|
SketchLeftRemovePathSch1_RemoveAllPathPostMessage(str);
|
|
}
|
|
function Button_RemoveAllPathCancel(){
|
|
var str="RemovePathSch1_RemoveAllPath:Cancel#";
|
|
SketchLeftRemovePathSch1_RemoveAllPathPostMessage(str);
|
|
}
|
|
</script>
|
|
<title>Title</title>
|
|
</head>
|
|
<body>
|
|
<tr>
|
|
<p>
|
|
<!-- <input type=button class="btn" id="Button_RemoveAllPathOK" value="确认删除全部路径" onclick=Button_RemoveAllPathOK() style=" background:lightblue"> --></input>
|
|
<input type=button class="btn" id="Button_RemoveAllPathOK" value="RemoveAllPathOK" onclick=Button_RemoveAllPathOK() style=" background:lightblue">
|
|
</p>
|
|
</tr>
|
|
<tr>
|
|
<p>
|
|
<!-- <input type=button class="btn" id="Button_RemoveAllPathCancel" value="取消删除全部路径" onclick=Button_RemoveAllPathCancel() style=" background:lightcoral"></input> -->
|
|
<input type=button class="btn" id="Button_RemoveAllPathCancel" value="RemoveAllPathCancel" onclick=Button_RemoveAllPathCancel() style=" background:lightcoral"></input>
|
|
</p>
|
|
</tr>
|
|
</body>
|
|
<script src="../js/drag.js"></script>
|
|
</html> |