仿百度搜索可用html,Vue 仿百度搜索功能实现代码

无上下选择

jsonp

window.onload = function(){

var vm = new Vue({

el:'#box',

data:{

myData:[],

t1:''

},

methods:{

get:function(){

this.$http.jsonp('https://sp0.baidu.com/5a1Fazu8AA54nxGko9WTAnF6hhy/su',{

wd:this.t1

},{

jsonp:'cb'

}).then(function(res){

this.myData=res.data.s

},function(){

});

}

}

});

}

  • {{value}}

暂无数据...

加上上下选择

jsonp

.gray{

background: #ccc;

}

window.οnlοad=function(){

new Vue({

el:'body',

data:{

myData:[],

t1:'',

now:-1

},

methods:{

get:function(ev){

if(ev.keyCode==38||ev.keyCode==40){

return;

}

if(ev.keyCode==13){

window.open('https://www.baidu.com/s?wd='+this.t1);

this.t1='';

}

this.$http.jsonp('https://sp0.baidu.com/5a1Fazu8AA54nxGko9WTAnF6hhy/su',{

wd:this.t1

},{

jsonp:'cb'

}).then(function(res){

this.myData=res.data.s;

},function(){

});

},

changeDown:function(){

this.now++;

if(this.now==this.myData.length)this.now=-1;

this.t1=this.myData[this.now];

},

changeUp:function(){

this.now--;

if(this.now==-2)this.now=this.myData.length-1;

this.t1=this.myData[this.now];

}

}

});

};

  • {{value}}

暂无数据...

以上所述是小编给大家介绍的Vue 仿百度搜索功能实现代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值