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 SketchLeftRemovePathSch2_RemoveSinglePathPostMessage(str){
|
||
|
|
parent.window.postMessage(
|
||
|
|
str,
|
||
|
|
"*" //or "www.parentpage.com"
|
||
|
|
);
|
||
|
|
}
|
||
|
|
function Button_RemoveSinglePathOK(){
|
||
|
|
var str="RemovePathSch2_RemoveSinglePath:OK#";
|
||
|
|
SketchLeftRemovePathSch2_RemoveSinglePathPostMessage(str);
|
||
|
|
}
|
||
|
|
function Button_RemoveSinglePathCancel(){
|
||
|
|
var str="RemovePathSch2_RemoveSinglePath:Cancel#";
|
||
|
|
SketchLeftRemovePathSch2_RemoveSinglePathPostMessage(str);
|
||
|
|
}
|
||
|
|
</script>
|
||
|
|
<title>Title</title>
|
||
|
|
</head>
|
||
|
|
<body>
|
||
|
|
<tr>
|
||
|
|
<p>
|
||
|
|
<!-- <input type=button class="btn" id="Button_RemoveSinglePathOK" value="删除单条" onclick=Button_RemoveSinglePathOK() style="background:lightblue"> --></input>
|
||
|
|
<input type=button class="btn" id="Button_RemoveSinglePathOK" value="RemoveSinglePathOK" onclick=Button_RemoveSinglePathOK() style="background:lightblue">
|
||
|
|
</p>
|
||
|
|
</tr>
|
||
|
|
<tr>
|
||
|
|
<p>
|
||
|
|
<!-- <input type=button class="btn" id="Button_RemoveSinglePathCancel" value="取消删除单条" onclick=Button_RemoveSinglePathCancel() style="background:lightcoral"></input> -->
|
||
|
|
<input type=button class="btn" id="Button_RemoveSinglePathCancel" value="RemoveSinglePathCancel" onclick=Button_RemoveSinglePathCancel() style="background:lightcoral"></input>
|
||
|
|
</p>
|
||
|
|
</tr>
|
||
|
|
</body>
|
||
|
|
<script src="../js/drag.js"></script>
|
||
|
|
</html>
|