我使用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);
})
})
}
})
})