如何在表单输入中显示div id值

时间:2016-03-11 06:52:35

标签: javascript jquery html

我试图在表单输入中显示JavaScript输出值。我的div输出值。

<div id="geo" class="geolocation_data"></div>

但我想在输入框中显示。我尝试了以下代码,但没有显示任何

<input type="text" placeholder="Please type a location" class="form-control input-lg noredius geolocation_data" value="" id="geo">

1 个答案:

答案 0 :(得分:1)

<input type="text" placeholder="Please type a location" class="form-control input-lg noredius geolocation_data" value="" id="geo">

您应该使用以下Javascript代码为文本框填充一些值:

document.getElementById("geo").value= Your_variable_containing_the_value;