1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 |
<! DOCTYPE HTML> < html > < head > < meta charset = "utf-8" > < meta name = "viewport" content = "width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no" > < meta http-equiv = "Content-Security-Policy" content = "default-src * data: gap: content: https://ssl.gstatic.com; style-src * 'unsafe-inline'; script-src * 'unsafe-inline' 'unsafe-eval'" > <script src="components/loader.js"> </script> < link rel = "stylesheet" href = "components/loader.css" > < link rel = "stylesheet" href = "css/style.css" > <script> function hello(){ var name = prompt( "お名前は?" ); alert(name + "さん、こんにちは" ); } </script> </ head > < body > < h1 >あいさつアプリ</ h1 > < button onclick = "hello();" >あいさつをする</ button > </ body > </ html > |
※コード部分をダブルクリックすると全選択ができます。