미디어위키 검색창 기능 구현

1 개요[ | ]

미디어위키 검색창 기능 구현
<input id="searchterm" type="text" />
<button id="search">search</button>
<ul id="results"></ul>

<script>
$("#searchterm").keyup(function (e) {
    var q = $("#searchterm").val();
    $.getJSON("//ko.wikipedia.org/w/api.php?callback=?", {
        srsearch: q,
        action: "query",
        list: "search",
        format: "json"
    },

    function (data) {
        $("#results").empty();
        $("#results").append("Results for: " + q + "");
        $.each(data.query.search, function (i, item) {
            $("#results").append("<li><a href='https://ko.wikipedia.org/wiki/" + encodeURIComponent(item.title) + "'>" + item.title + "</a><br>" + item.snippet + "</li>");
        });
    });
});
</script>

2 같이 보기[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}