作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个表格,需要当前的 GPS lat
和 lon
。这是一个移动应用程序,因此最好的方法是在提交时更新这些表单字段。这是我在提交表单之前必须触发该函数的 JS:
$('#form2').submit(function(){
setpos();
});
function foundLocation(pos) {
document.getElementById("s_tlat").value = pos.coords.latitude;
document.getElementById("s_tlon").value = pos.coords.longitude;
}
function noLocation() {
document.getElementById("warning").innerHTML = "Could not find your location";
}
function setpos() {
navigator.geolocation.getCurrentPosition(updateForm, noLocation);
};
function updateForm(pos) {
document.getElementById("s_tlat").value = pos.coords.latitude;
document.getElementById("s_tlon").value = pos.coords.longitude;
// alert("129");
};
经过多次试验,我见证了表单的更新,然后接收 post
页面收到请求并且根本没有参数
。下一行是故障排除行,提供有关 params
的反馈,这表明表单设计良好,并为表单中的字段发送空白:
params: {"s_tname"=>"", "s_tlat"=>"", "s_tlon"=>"", "form2Submit"=>"Post New Item"}
<form action="/dorko" method="post" id="form2" name="post_tree">
blah
<input name="form2Submit" id="form2Submit" type="submit" value="Post New Item">
</form>
在表单中手动输入 s_tname 后,即可正常发送。 lat
和 lon
字段不会显示。我怎样才能让它发挥作用?我忽略了什么?
最佳答案
getCurrentPosition
是异步的。您需要禁用默认表单提交,并在更新字段后从回调显式提交表单。
$('#form2').submit(function(e) {
e.preventDefault();
setpos();
});
function foundLocation(pos) {
document.getElementById("s_tlat").value = pos.coords.latitude;
document.getElementById("s_tlon").value = pos.coords.longitude;
}
function noLocation() {
document.getElementById("warning").innerHTML = "Could not find your location";
}
function setpos(form) {
navigator.geolocation.getCurrentPosition(updateForm, noLocation);
};
function updateForm(pos) {
document.getElementById("s_tlat").value = pos.coords.latitude;
document.getElementById("s_tlon").value = pos.coords.longitude;
document.getElementById("form2").submit();
};
关于javascript - 提交后更新 JS 表单字段,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/57648383/
我尝试通过正则表达式将文本中的单引号更改为双引号。 (单字)示例:我走了。 You gona fly to planet 'Ziqtos' => 我需要在 I'm 中保留单引号,并在 You gona
我正在构建一个 API,其中大部分将包含 JSON 和 HTML 内容。但是一些非常具体的端点只呈现 true 或 false,并且还在 POST 中接受 true 或 false。这是请求或响应的整
我是一名优秀的程序员,十分优秀!