Skip to content

Commit b7f3537

Browse files
committed
Site updated: 2019-01-04 23:24:53
1 parent 211f916 commit b7f3537

File tree

1 file changed

+29
-0
lines changed

1 file changed

+29
-0
lines changed

js/search.js

+29
Original file line numberDiff line numberDiff line change
@@ -87,3 +87,32 @@ var searchFunc = function(path, search_id, content_id) {
8787
}
8888
});
8989
}
90+
91+
var inputArea = document.querySelector("#local-search-input");
92+
var getSearchFile = function(){
93+
var path = "/search.xml";
94+
searchFunc(path, 'local-search-input', 'local-search-result');
95+
}
96+
97+
inputArea.onfocus = function(){ getSearchFile() }
98+
99+
var $resetButton = $("#search-form .fa-times");
100+
var $resultArea = $("#local-search-result");
101+
102+
inputArea.oninput = function(){ $resetButton.show(); }
103+
resetSearch = function(){
104+
$resultArea.html("");
105+
document.querySelector("#search-form").reset();
106+
$resetButton.hide();
107+
$(".no-result").hide();
108+
}
109+
110+
inputArea.onkeydown = function(){ if(event.keyCode==13) return false}
111+
$resultArea.bind("DOMNodeRemoved DOMNodeInserted", function(e) {
112+
if (!$(e.target).text()) {
113+
$(".no-result").show(200);
114+
} else {
115+
$(".no-result").hide();
116+
}
117+
})
118+

0 commit comments

Comments
 (0)