2011-10-13 127 views
0

你怎麼把一個javascript變量爲<input>箱的value=""<form>HTML和JavaScript變量

這必須是容易的,但我不知道。

+0

可能重複的[設置與javascript中的輸入字段的值](http://stackoverflow.com/questions/7609130/set-the-value-of-a-input-field-with-javascript) –

回答

1

這並不難。看看下面的例子:

HTML:

<input id="id_of_your_element"> 

的Javascript:

var yourvariable = "Hello world!"; 
document.getElementById("id_of_your_element").value = yourvariable; 
1
document.getElementById('element-id').value = 'The Value'; 
0
Value="<script type="text/javascript">document.write(yourVariableName);</script>" 
+0

你應該避免使用document.write,尤其是對於DOM方法這樣一個簡單的應用程序可用 - http://stackoverflow.com/questions/802854/why-is-d ocument寫考慮的,一個壞實踐 – nickb

0

你可以這樣做:

document.getElementById('inputId').value = yourVariable; 

您還可以使用jQuery庫,它會:

$('#inputId').val(yourVariable);