html常用组件Js控制代码模板

2018-09-05  本文已影响0人  李2牛
  1. Ajax请求
var IpAndPort = 'http://' + window.location.hostname +
 ':' + window.location.port;
$.ajax({
        url: IpAndPort + "/sys/xxx",
        type: "POST",
        data: {sysId: sysId},
        dataType: "json",
        success: function (result) {
        },
        error: function (request, errorType, errorMsg) {
            alert("删除失败");
        }
    })
  1. 获取下拉框的多个选中数值
        var array = [];
        $('#system_list option:selected').map(function () {
            array.push($(this).val());
        });
        for (var i = 0;i < array.length;i ++){
            console.log(array[i]);
        }
上一篇下一篇

猜你喜欢

热点阅读