瀏覽代碼

新增 url keyword 搜尋

SyuanYu 6 月之前
父節點
當前提交
3e3b1c6ecb
共有 2 個文件被更改,包括 24 次插入10 次删除
  1. 6 10
      designers/lists/js/main.js
  2. 18 0
      js/lists.js

+ 6 - 10
designers/lists/js/main.js

@@ -6,20 +6,16 @@ $('#topCarousel').load('../../template/top_carousel.html');
 
 
 // window.onload = function () {
-
-//     if (screen.width < 991) {
-
-//         window.location.href = `https://m.hhh.com.tw/designers/lists/`;
-//     }
+//   if (screen.width < 991) {
+//     window.location.href = `https://m.hhh.com.tw/designers/lists/`;
+//   }
 // }
 
 // window.onload = function () {
-//   //hhh_user_api();
-//     if (screen.width >= 991) {
-
-//     window.location.href =`https://hhh.com.tw/designers/lists/`;
+//   // hhh_user_api();
+//   if (screen.width >= 991) {
+//     window.location.href = `https://hhh.com.tw/designers/lists/`;
 //   }
-
 // }
 
 let assignOrder = ""; // 當前排序

+ 18 - 0
js/lists.js

@@ -317,6 +317,24 @@ $(document).on('click', function (e) {
   closeAllLists();
 });
 
+// 取得目前網址參數
+const queryString = window.location.search;
+const urlParams = new URLSearchParams(queryString);
+
+// 判斷網址是否有 keyword
+if (urlParams.has('keyword')) {
+  const keywordValue = urlParams.get('keyword');
+  console.log('網址 keyword', keywordValue);
+
+  $('#keywordInput').val(keywordValue);
+
+  setTimeout(() => {
+    page = 1;
+    isFirstLoad = false;
+    dataSearch();
+  }, 0)
+}
+
 // 發送 GA
 function push_GA(text, value) {
   if (text === "接案預算") {