因为虽然我无法使用type = text设置输入字段的值。
在此之前,我总是使用以下方法:
<input style="display: none" type="text" name="geo_poi" value="" id="geofeld" />
然后,在JavaScript中,我添加了包含如下代码的代码:
document.getElementById("geofeld").value = geo_poi;
这一直有效。也许新的浏览器不再需要上面的方法。
最佳答案
因此,使用以下方法设置属性可以正常工作。
document.getElementById("geofeld").setAttribute("value", geo_poi);