We're calling on all EU-based Mozillians with iOS or iPadOS devices to help us monitor Apple’s new browser choice screens. Join the effort to hold Big Tech to account!

Mozilla サポートの検索

Avoid support scams. We will never ask you to call or text a phone number or share personal information. Please report suspicious activity using the “Report Abuse” option.

詳しく学ぶ

このスレッドはアーカイブに保管されました。 必要であれば新たに質問してください。

Dynamic created control in java script is not passing to next page

  • 1 件の返信
  • 1 人がこの問題に困っています
  • 1 回表示
  • 最後の返信者: Maudib11

more options

while I am try to get its value on next page after submission, dynamic created control is not accesible. Its working fine in IE


<script> function myfunction(){

var element = document.createElement("input");

   //Assign different attributes to the element.
   element.setAttribute("type", "text");
   element.setAttribute("value", "sdf");
   element.setAttribute("name", "mytxt");
   element.setAttribute("id", "mytxt");


    var myDiv=document.getElementById("mydiv");
    myDiv.appendChild(element);

} </script>

while I am try to get its value on next page after submission, dynamic created control is not accesible. Its working fine in IE <div id="mydiv" ></div> <script> function myfunction(){ var element = document.createElement("input"); //Assign different attributes to the element. element.setAttribute("type", "text"); element.setAttribute("value", "sdf"); element.setAttribute("name", "mytxt"); element.setAttribute("id", "mytxt"); var myDiv=document.getElementById("mydiv"); myDiv.appendChild(element); } </script>

この投稿は nix_solanki により に変更されました

すべての返信 (1)

more options

I couldn't really see anything wrong with the code you supplied. Maybe you should show us the whole code to get further support.

この投稿は Maudib11 により に変更されました