質問編集履歴
1
コード変更
test
CHANGED
File without changes
|
test
CHANGED
@@ -10,21 +10,43 @@
|
|
10
10
|
|
11
11
|
選択のメッセージボックス
|
12
12
|
|
13
|
+
<!DOCTYPE html>
|
14
|
+
|
15
|
+
<html>
|
16
|
+
|
17
|
+
<head>
|
18
|
+
|
19
|
+
<meta charset="utf-8">
|
20
|
+
|
21
|
+
<script>
|
22
|
+
|
23
|
+
|
24
|
+
|
13
25
|
function dlg(){
|
14
26
|
|
15
|
-
r=confirm("test");
|
27
|
+
r=confirm("test");
|
16
28
|
|
17
|
-
if(r==true){
|
29
|
+
if(r==true){
|
18
30
|
|
19
|
-
location.href = 'http://localhost/mazak/mazak_php/machine_vortex_read_tooldata.php';
|
31
|
+
location.href = 'http://localhost/mazak/mazak_php/machine_vortex_read_tooldata.php';
|
20
32
|
|
21
|
-
}else{
|
33
|
+
}else{
|
34
|
+
|
35
|
+
//なにもしない
|
36
|
+
|
37
|
+
}
|
22
38
|
|
23
39
|
}
|
24
40
|
|
25
41
|
|
26
42
|
|
43
|
+
</script>
|
44
|
+
|
45
|
+
</head>
|
46
|
+
|
27
|
-
|
47
|
+
<body>
|
48
|
+
|
49
|
+
<h1>開発テスト画面</h1>
|
28
50
|
|
29
51
|
<p>VORTEX マシンツールデータ取得<input type="button" value="表 示" onclick="dlg()">
|
30
52
|
|