0

下面是代码,问题是#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");
}
4

1 回答 1

0

试试这个

 $('#smsregid').prop('value', data.smsregid);
于 2013-03-15T13:44:41.377 回答