1

内部で変数を呼び出す必要がありますが、document.write機能しません...例

function(){
    var variable=document.getElementById("text");
    alert("your text "+ variable);
}

テーブル内には次のものがあります。

document.write('<td><input type="text" id="example"></td>');<br>
document.write('<td><input type="button" value="enter a text" onclick="function()">
4

6 に答える 6

1
var newFunction = function(){
    var variable=document.getElementById("text");
    alert("your text "+ variable);
}
document.write('<td><input type="button" value="enter a text" onclick="newFunction()">
于 2013-05-17T08:39:12.787 に答える
0

読み取りたい要素のプロパティを参照する必要があります。getElementById を使用するだけで、テキストフィールドの値ではなく、オブジェクトが返されます。を使用しgetelementById('text').valueます。

于 2013-05-17T08:38:59.893 に答える