atomのHTML内で、jQueryを反映できません。
google chrome内のデベロッパーツールで確認しましたが、ファイルそのものが反映されてないようでした。
HTML
1<!DOCTYPE html> 2<html> 3 <head> 4 <meta charset="utf-8"> 5 <title></title> 6 <link rel="stylesheet" href="main.css"> 7 <script src="https://code.jquery.com/jquery-3.4.1.js"></script> 8 <script src="main.js"></script> 9 </head> 10 <body> 11 <script> 12 alert.('hello'); 13 </script> 14 </body> 15
Jquery
1$(function(){ 2 $('body').alert('Hello! World!') 3} 4
回答1件
あなたの回答
tips
プレビュー