html forms crash IE 11

后端 未结 2 917
天涯浪人
天涯浪人 2020-12-19 17:01

I have the following code.

User fills and submits the first form. When he hits \"submit\" the data is stored in the db via websockets. At the same time , server ret

2条回答
  •  难免孤独
    2020-12-19 17:27

    Does the following resolve the crashing behavior?

    document.getElementById("source").value=" ";
    document.getElementById("contr").value=" ";
    document.getElementById("source").value="";
    document.getElementById("contr").value="";
    

提交回复
热议问题