質問編集履歴
1
コード変更
title
CHANGED
File without changes
|
body
CHANGED
@@ -4,13 +4,24 @@
|
|
4
4
|
|
5
5
|
```JavaScript
|
6
6
|
選択のメッセージボックス
|
7
|
+
<!DOCTYPE html>
|
8
|
+
<html>
|
9
|
+
<head>
|
10
|
+
<meta charset="utf-8">
|
11
|
+
<script>
|
12
|
+
|
7
13
|
function dlg(){
|
8
|
-
r=confirm("test");
|
14
|
+
r=confirm("test");
|
9
|
-
if(r==true){
|
15
|
+
if(r==true){
|
10
|
-
|
16
|
+
location.href = 'http://localhost/mazak/mazak_php/machine_vortex_read_tooldata.php';
|
11
|
-
}else{
|
17
|
+
}else{
|
18
|
+
//なにもしない
|
19
|
+
}
|
12
20
|
}
|
13
21
|
|
22
|
+
</script>
|
23
|
+
</head>
|
14
|
-
|
24
|
+
<body>
|
25
|
+
<h1>開発テスト画面</h1>
|
15
26
|
<p>VORTEX マシンツールデータ取得<input type="button" value="表 示" onclick="dlg()">
|
16
27
|
```
|