正式釋出
維基百科查詢區塊,輸入關鍵自即可查詢。
<script type="text/javascript">
  $(document).ready(function(){
    $('#get_wiki').colorbox({iframe:true , width:'80%' , height:'90%'});
    $("#get_wiki").click(function(event) {
      $("#get_wiki").attr("href","https://zh.m.wikipedia.org/wiki/"+$('#search_wiki').val());
    });
 
    $("#search_wiki").keypress(function(e){
      code = (e.keyCode ? e.keyCode : e.which);
      if (code == 13)
      {
        // alert("https://www.moedict.tw/"+$('#search_wiki').val());
        $.colorbox({
          href:"https://zh.m.wikipedia.org/wiki/"+$('#search_wiki').val(),
          iframe:true ,
          width:'80%' ,
          height:'90%'});
      }
    });
  });
</script>
 
<div class="input-group"><input class="form-control" id="search_wiki" placeholder="請輸入關鍵字" type="text" /> <span class="input-group-btn"> <a class="btn btn-primary cboxElement" href="#" id="get_wiki">查百科</a> </span></div>HTML
                左邊
                            正式釋出