下面是代码,问题是#smsregid.val 在 Firefox 中发生变化,但在 Chrome 中没有变化,任何建议为什么
function subSmsForm() {
$.post('?action=smsregistration-save', $('#smsform').serialize(),
function(data) {
$('#mess').html(data.message);
$('#mess').show();
$('#signup').hide();
$('#verify').show();
$('#verify').load('?action=verification');
alert(data.smsregid);
$('#smsregid').val(data.smsregid);
}, "json");
}