• 1.IE中,表单元素一旦被创建,其name值就不能被修改。在创建input的时候,很容易忽略掉而成为bug。

    如:

    var hid = document.createElement('input');
    hid.name = 'vvv';
    hid.type = 'hidden';
    hid.value = '7';
    form.appendChild(hid);

    虽然创建的时候ie不报错,...