| 12345678910111213141516171819202122232425262728293031323334353637 |
- // 获取input框
- var input_box = document.getElementById("Search-input");
- // 获取百度按钮
- var baidu_btn = document.getElementById("Search-button");
- // 键盘事件
- input_box.onkeydown = function () {
- // 当按下回车键根据input值跳转页面
- if (event.keyCode == 13) {
- window.location.href = "https://www.baidu.com/s?ie=utf-8&f=8&rsv_bp=1&rsv_idx=1&tn=baidu&wd="+input_box.value;
- };
- };
- // 单击百度一下按钮触发事件
- baidu_btn.onclick = function () {
- var input_value = input_box.value;
- if (input_value == "" || input_value == null) {
- window.location.reload();
- } else {
- window.location.href = "https://www.baidu.com/s?ie=utf-8&f=8&rsv_bp=1&rsv_idx=1&tn=baidu&wd="+input_value;
- };
- };
- // 获取模块框
- var Modul = document.getElementById("Modul");
- // 获取more_bar框
- var moreBar = document.getElementById("more_bar");
- // 监听滚轮事件
- window.onscroll = function () {
- Modul.style.height = "auto";
- moreBar.style.display = "none";
- }
- // 下拉箭头点击事件
- moreBar.onclick = function () {
- Modul.style.height = "auto";
- moreBar.style.display = "none";
- }
|