layui使用label标签的方法
1.
//引入layui标签
2.
//body写代码
选择课程: --请选择--
3.
//script里的代码
$.ajax({
type:"post",
url:"onlines",//此次url改为真正需要的url
success:function(data,status){
$.each(data,function(index,item){
$("#select").append(//此处向select中循环绑定数据
""+item.o_title+"");
});
},
});
以上这篇layui使用label标签的方法就是小编分享给大家的全部内容了,希望能给大家一个参考,也希望大家多多支持毛票票。