IEで機能しない動的テキストボックスの作成
// Create a new text input
var newText = document.createElement('input');
newText.type = "input";
他のすべてのブラウザで動作しています
setAttribute メソッドを使用してこれを試してください。
また、'text' や 'submit' などの正しいタイプを設定してください。
var newText = document.createElement('input');
newText.setAttribute("type", "text");
IE では、入力要素の型を「変更」できません。次のような回避策を使用する必要がありますdocument.createElement("<input type=\"text\" name=\"textBox\" >");