我用传单。我有一个从前端添加帖子的表单。我必须获取当前latlng
坐标并将它们添加到WordPress自定义字段。我想我可以使用像这样的输入
document.write('<input type=\'text\' name=\'position\' value = \'' + latlng + '\'');
如何在变量中获取latlng
?
答案 0 :(得分:0)
var positions = document.getElementsByName('position'); //the list of position
var position = positions[i] // the index of position in the document