脚本不能与ajax同步

时间:2017-09-05 06:08:25

标签: jquery ajax

我使用Ajax根据select标签中选择的选项显示特定表单,但#send操作中的提醒似乎无效。

的script.js:

$(document).ready(function () {
    $('#SelectBox').on("change", function() {
        if ($('#SelectBox').val() == 'rectangle') {
            $.ajax({
                type:'post',
                url:'views/rectangle/index',
                data:{},
                success:(function (response) {
                    $('#Container').html(response);
                })
            })
        $('#send').click(function () {
            alert("clicking");
        })
        }else if($('#SelectBox').val() == 'square'){
            $.ajax({
                type:'post',
                url:'views/square/index',
                data:{},
                success:(function (response) {
                    $('#Container').html(response);
                })
            })
        }
    })
})

0 个答案:

没有答案