본문으로 이동

대문: 두 판 사이의 차이

한국고고학사전
편집 요약 없음
편집 요약 없음
1번째 줄: 1번째 줄:
<html>
<html>
<form id="autoRadioSearch" action="/wiki/index.php/Special:Search" method="get">
<form id="radioSearch" action="/wiki/index.php/Special:Search" method="get">
   <div>
 
     <label><input type="radio" name="scope" value="all" checked> 전체</label>
  <!-- 검색 범위 선택 -->
     <label><input type="radio" name="scope" value="site"> 유적</label>
   <div style="margin-bottom:6px;">
     <label><input type="radio" name="scope" value="concept"> 개념</label>
     <label>
      <input type="radio" name="scope" value="all" checked>
      전체
    </label>
 
     <label style="margin-left:12px;">
      <input type="radio" name="scope" value="site">
      유적
    </label>
 
     <label style="margin-left:12px;">
      <input type="radio" name="scope" value="concept">
      개념
    </label>
   </div>
   </div>


   <input type="search" name="search" id="q" placeholder="검색어 입력">
  <!-- 검색어 입력 -->
   <input
    type="search"
    name="search"
    id="query"
    placeholder="검색어 입력"
    style="width:360px; padding:6px;"
  />
 
  <button type="submit">검색</button>
</form>
</form>


<script>
<script>
const form = document.getElementById('autoRadioSearch');
document.getElementById('radioSearch').onsubmit = function () {
const q = document.getElementById('q');
  const q = document.getElementById('query');
 
form.addEventListener('change', () => {
  if (!q.value.trim()) return;
 
   const scope = document.querySelector('input[name="scope"]:checked').value;
   const scope = document.querySelector('input[name="scope"]:checked').value;


  let query = q.value;
   if (scope === 'site') {
   if (scope === 'site') query += ' incategory:유적';
    q.value += ' incategory:유적';
   if (scope === 'concept') query += ' incategory:개념';
   } else if (scope === 'concept') {
 
    q.value += ' incategory:개념';
   q.value = query;
   }
  form.submit();
};
});
</script>
</script>
</html>
</html>



2026년 1월 16일 (금) 10:03 판

한국고고학전문사전(구석기 시대 편) 한국고고학전문사전(신석기 시대 편) 한국고고학전문사전(청동기 시대 편)
link=https://dh.aks.ac.kr/~khw/wiki/index.php/한국고고학전문사전(구석기 시대 편) link=https://dh.aks.ac.kr/~khw/wiki/index.php/한국고고학전문사전(신석기 시대 편) link=https://dh.aks.ac.kr/~khw/wiki/index.php/한국고고학전문사전(청동기 시대 편)