Mike 3 年 前
コミット
eda00e8b6a
1 ファイル変更5 行追加3 行削除
  1. 5 3
      desktop11/index.html

+ 5 - 3
desktop11/index.html

@@ -26,7 +26,6 @@
     <link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.css" />
     <link rel="stylesheet" type="text/css" href="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick-theme.css" />
     <link rel="stylesheet" href="./style.css">
-    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
 </head>
 
 <body id="top">
@@ -72,9 +71,10 @@ function testAPI() {                      // Testing Graph API after login.  See
             
             // 設定欄位預設值
             console.log('response.email = ' + response.email);
-            $('#email').html(response.email);
+            document.getElementById("email").value = response.email;
+            
             console.log('response.name = ' + response.name);
-            $('#name').html(response.name);
+            document.getElementById("name").value = response.name;
 
             console.log('隱藏FB登入按鈕');
 
@@ -471,6 +471,8 @@ function testAPI() {                      // Testing Graph API after login.  See
 
     <script type="text/javascript" src="//cdn.jsdelivr.net/npm/slick-carousel@1.8.1/slick/slick.min.js"></script>
 
+    <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.6.0/jquery.min.js"></script>
+
     <script src="./goto.js"></script>
 </body>