html表单崩溃IE 11

时间:2013-12-26 16:19:29

标签: javascript html forms internet-explorer-11

我有以下代码。

用户填写并提交第一张表格。当他点击“提交”时,数据通过websockets存储在数据库中。同时,服务器返回刚刚创建的新ID。此ID以隐藏的形式存储。返回id后会显示隐藏表单的提交按钮。

如果用户想要点击隐藏表单的提交(现在不再隐藏)并转移到另一个页面,其中id也通过表单进行transefer。

在第一种形式中,用户可以点击按钮,会出现更多文本字段,因此他可以添加数据。这些测试字段的最大数量是10.我自己为此编写了JS。这些字段是通过JS动态添加的。

适用于Chrome和Firefox。用于在IE 10中工作。由于IE在IE 11.0.9600.16476中更新:

如果我填写并提交第一份表格,则有效。

如果我填写第一个表单然后点击“全部清除”,IE崩溃

如果我填写/提交ifirst表单然后提交第二个表单,IE崩溃

我正在使用Windows 7

此方法的唯一方法是对这些行进行评论

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

我尽我的力量和知识做了一切。重新编辑,使用JS进行提交,编辑enctype,使用URL传递数据。什么都没有。对我没有任何意义。

请,任何建议都可以。

提前致谢。我为这篇巨大的帖子道歉

这是代码

//globals for links
var gco=1;
var arforl=[];

//save form data and show hidden button of the 2nd form
function save(){
  //edit the data of a field
  var sourceSpace=document.getElementById("source").value; var sourceNoSpace=sourceSpace.replace(/\s/g, '');

  //get all the extra links, put a | betwwen them
  var fst ="|";
  for (var a=0;a < arforl.length; a++){     
     if (document.getElementById(arforl[a]).value!="")
     {fst+=document.getElementById(arforl[a]).value+"|";}
   }

  var ffst = fst.slice(1,fst.length-1);

  var so = new WebSocket("ws://localhost:8000");

  //get all the values from first form and other values, send via websockets
  so.onopen = function(){
   so.send(JSON.stringify({command: 'insertAll',
   name: document.getElementById('name').value,
   geo: hul,
   geoT:'point',
   descr: document.getElementById('descr').value,
   chron: document.getElementById('chron').value,  
   type: document.getElementById('typeselect').value,  
   era: document.getElementById('eraselect').value,  
   lin: document.getElementById('link').value+"|"+ffst,  
   sourc: sourceNoSpace,  
   contr: document.getElementById('contr').value,
   conler:idc

  }));}

  so.onmessage = function (evt) { 
   //get the new id from websockets 
   var received_msg = evt.data;

   //clear the form, show some messages 
   document.getElementById("next").style.display="block";
   document.getElementById("saveB").style.display="block";

   document.getElementById("name").value="";
   document.getElementById("descr").value="";
   document.getElementById("chron").value="";
   document.getElementById("typeselect").value=" ";
   document.getElementById("eraselect").value=" ";
   document.getElementById("link").value="";

     // i have to comment the next lines for this to work
   document.getElementById("source").value="";
   document.getElementById("contr").value="";

   //clear the extra links
   clearLinks();

   //pass the new id in the hidden form
   document.getElementById("pinid").value=received_msg;
   so.close();
   }

}//closes save()


//adds more text fields for links
function moreLink(){
  if (gco!=10){
  var newLinkb=[];

  document.getElementById("extraLink").appendChild(document.createElement("br"));
  newLinkb[gco]= document.createElement('input');
  newLinkb[gco].setAttribute('type','text');
  newLinkb[gco].setAttribute('id',gco);
  newLinkb[gco].setAttribute('onfocus','cleari()');
  document.getElementById("extraLink").appendChild(newLinkb[gco]);
  arforl.push(gco);             
  gco++;
  }

 else
 {document.getElementById("extraLink2").innerHTML="max is 10";}

}

//clears the extra links
function clearLinks(){
 for (var d=0;d < arforl.length; d++){
 document.getElementById(arforl[d]).value="";
    }
}

function clearall(){
          document.getElementById("name").value="";
          document.getElementById("descr").value="";
          document.getElementById("chron").value="";
          document.getElementById("typeselect").value=" ";
          document.getElementById("eraselect").value=" ";
          document.getElementById("link").value="";
     // i have to comment the next lines for this to work
          document.getElementById("source").value="";
          document.getElementById("contr").value="";    
}

HTML:

第一种形式:

<form  name="inserterPoint" action="#" method="post" enctype="multipart/form-data">
Name <br>
<input name="name" id="name" class="textformfront" type="text" required  >

Description<br>
<textarea name="descr" id="descr" class="textformfront" rows="24" cols="50" required ></textarea>

Chronology
<input name="chron" id="chron" class="textformfront" type="text" required  >


  Type : <br>
  <select name="typeselect" id="typeselect" >
    <option selected value=" ">Pick one</option>
    <?php
      for ($d=0; $d< sizeof($typos) ; $d++)
           {echo '"<option value="'.$tid[$d].'" typeselect='.$tid[$d].'>'.$typos[$d].'</option>';}
    ?>
  </select>

 Era:<br>
  <select name="eraselect" id="eraselect" >
    <option selected value=" ">Pick one</option>
    <?php 
        for ($g=0; $g< sizeof($era) ; $g++)
             {echo '"<option value="'.$eid[$g].'" eraselect='.$eid[$g].'>'.$era[$g].'</option>';}
       ?>
  </select>

Links<br>
 <input name="link" id = "link" type="text" class="textformfront" required >

  <div id="extraLink"></div>
  <input type="button" onClick="moreLink();" value="More links" class="formButtonMap">

  <div id="extraLink2"></div>

Sources<br>
  <textarea name="source" id= "source" class="textformfront"  rows="24" cols="50" required ></textarea>

Contributors
<textarea name="contr" id="contr" class="textformfront"   rows="24" cols="50" ></textarea>

<input type="button"  id="clearAll" value="Clear All" class="formButtonMap" onClick="clearall();>


<input type="button"  id="saveB" value="Save All" class="formButtonMap" onClick="save();" style="display:none">

第二种形式:

  <form name="nextform" action="anotherpage.php" method="post" enctype="multipart/form-data">
    <input name="pinid" id="pinid" type="hidden">
    <input type="submit" value="Go to another page" class="formButtonMap">
  </form>

修改

“IE崩溃”我的意思是暂时没有任何事情发生。然后,如果我点击页面上的任何软件,我收到消息“网站没有响应”,只有当我点击“恢复”让我到另一页。但是新的id不会在另一页中传递。

编辑2 想知道为什么descr也是一个文本字段也不是问题的一部分。我的意思是,我不必评论清除其价值的界限。所以,我把它移到表格的末尾。事实证明,我必须评论清除其网站工作价值的界限。

然后我将链接部分移动到表单顶部。我必须评论清除除链接之外的所有内容的价值观的线条,以便网站发挥作用。看起来像一个“模式”。链接部分下面的所有内容都会导致问题。但是,如果我评论链接和JS关于链接,问题仍然存在。仍然毫无意义......

2 个答案:

答案 0 :(得分:0)

如果不设置“contr”和“source”.value属性,请尝试设置其.innerHTML属性。我不知道这是否有所作为,但......

答案 1 :(得分:0)

以下是否解决了崩溃行为?

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