jeter20131220 3 anni fa
parent
commit
4c51fb8acd
2 ha cambiato i file con 7 aggiunte e 7 eliminazioni
  1. 1 1
      ArkCard-web/collect.html
  2. 6 6
      ArkCard-web/goto.js

+ 1 - 1
ArkCard-web/collect.html

@@ -333,7 +333,7 @@
         </section>
         <div style="background: #484848;position: fixed; bottom:0px; z-index: 20;" class="sendbox w-100 pt-2">
             <div class="p-2">
-                <input style="border-radius: 10px; border:none;" class="p-2 w-100 mb-3" type="text" name="address" placeholder="請輸入您要發送的地址">
+                <input style="border-radius: 10px; border:none;" class="p-2 w-100 mb-3" type="text" name="address" placeholder="請輸入您要發送的地址" required>
                 <div class="text-end px-2">
                     <p class="text-start text-white mb-2">※一次只能發送一則NFT收藏品</p>
                     <button type="button" style="border:1px solid #fff; border-radius: 30px;" class="close btn text-white px-3">取消</button>

+ 6 - 6
ArkCard-web/goto.js

@@ -7,16 +7,16 @@
 // });
 
 $(".sendbox").hide();
-$(document).on("click", ".collectcard", function (event) {
-  // $(this).siblings('.collectcard').removeClass('select'); 
+$(document).on("click",".collectcontent",function (event) {
   $(".sendbox").show(500);
-  $(this).toggleClass("select");
+  $(this).addClass("select");
+  $(".select").siblings().removeClass('select'); 
 });
 
 $(document).on("click", ".close", function (event) {
   // $(this).siblings('.collectcard').removeClass('select'); 
   $(".sendbox").hide(500);
-  $(".collectcard").removeClass("select");
+  $(".collectcontent").removeClass("select");
 });
 
 // 收藏頁面
@@ -28,8 +28,8 @@ $(document).ready(function () {
   var collectuserid = getcollect[1];
     $.ajax({
       method: "GET",
-      url: "https://api.ptt.cx:8228/collection/" + collectuserid + "",
-      // url:"https://api.ptt.cx:8228/collection/Uf161c92b16f84357987a78c2b4b47719",
+      // url: "https://api.ptt.cx:8228/collection/" + collectuserid + "",
+      url:"https://api.ptt.cx:8228/collection/Uf161c92b16f84357987a78c2b4b47719",
       dataType: "json",
     })
       .done(function (msg) {