我想从之前的下拉值中获取值,我使用下面的代码来获取值,但似乎不起作用。
价值1
$(document).ready(function () {
$('#notification_id select').change(function () {
var selLang = $(this).val();
console.log(selLang);
$.ajax({
url: "<?php echo base_url(); ?>/Bnotifications/ajax_notif_languange",
async: false,
type: "POST",
data: "notification_lang="+selLang,
dataType: "html",
beforeSend: function(data) {
$('#notiflang').html('<img src="<?php echo base_url(); ?>/template/images/loader.gif" alt="" width="24" height="24">');
},
success: function(data) {
$('#notiflang').html(data);
},
})
});
});
我希望获得价值的ajax
$(document).ready(function () {
$('body').on('change','#notiftitle select',function () {
var selTitle = $(this).val();
var selLang = $("#notiflang").val();
console.log(selTitle);
$.ajax({
url: "<?php echo base_url(); ?>/Bnotifications/ajax_notif_message",
async: false,
type: "POST",
data: "notification_title="+selTitle+'¬ification_lang='+selLang,
dataType: "html",
beforeSend: function(data) {
$('#notification_message').html('<img src="<?php echo base_url(); ?>/template/images/loader.gif" alt="" width="24" height="24">');
},
success: function(data) {
$('#notification_message').html(data);
},
})
});
});
我使用这个值并在上面加上代码,但似乎没有从值1获取值,如何从之前的ajax下拉列表中获取值。
var selLang = $("#notiflang").val();