其他分享
首页 > 其他分享> > 8.18一路向北

8.18一路向北

作者:互联网

关于今天学了新添加这件事

在框架搭好以后添加

先写前台页面和之前的差不多的那种

 

 差不都就是上面这个鸭子

然后获取值调用自己写的关于数据库储存就可以了

可以用强类型或Ajax或vue

ajax

<script>
$(function () {
GetSheng()
})
function GetAdd() {
var name = $("#name").val();
var leibei = $("[name=leibie]:checked").val();
var sheng = $("#sheng").val();
var shi = $("#shi").val();
var etime = $("#eTime").val();
var price = $("#price").val();
if (name == '') {
return
}
else {
$("#namepsan").hide();
}
if (etime == '') {
return
}
else {
$("#etimespan").hide();
}
if (price == '') {
return
}
else {
$("#pricespan").hide();
}
$.post('http://localhost:9836/api/Values/GetAdd', {
eName: name,
eChuFang: leibei,
eSheng: sheng,
eShi: shi,
eTime: etime,
ePrice: price
}, res => {
if (res > 0) {
alert('添加成功');
location.href = 'Index'
}
else {
alert('添加失败')
}
})
}

function GetSheng() {
$.get('http://localhost:9836/api/Values/GetList?type=0', res => {
$(res).each(function () {
$("#sheng").append('<option value="' + this.oId + '">' + this.oName + '</option>');
})
})
}
function GetShi() {
var id = $("#sheng").val();
$("#shi").empty();
$("#shi").append('<option value="">所有</option>');
$.get('http://localhost:9836/api/Values/GetList?type=' + id, res => {
$(res).each(function () {
$("#shi").append('<option value="' + this.oId + '">' + this.oName + '</option>');
})
})
}

</script>

标签:function,向北,val,res,一路,sheng,8.18,var,shi
来源: https://www.cnblogs.com/furker/p/15158906.html