我试图在表单输入中显示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">
答案 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;