teratail header banner
teratail header banner
質問するログイン新規登録

質問編集履歴

1

コード変更

2021/02/24 01:10

投稿

退会済みユーザー
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
- location.href = 'http://localhost/mazak/mazak_php/machine_vortex_read_tooldata.php';
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
  ```