我最近遇到了这个问题:
[Violation]在滚动阻止事件中添加了非被动事件侦听器。考虑将事件处理程序标记为“被动”,以使页面更具响应性。参见“ URL”
这使输入字段在很长一段时间内无法编辑,直到时间流逝后(3-10s),输入字段才变为可编辑状态。 有没有办法解决这个烦人的问题?
在html文件中:
<form>
<label for="login">Login</label>
<input type="text" id="login" name="phone" autofocus>
</form>
在js文件中:
$('#zsearch').hide(); //hides overview
$.post("php/getUsr.php",
{
login: sessionStorage.login,
pass: sessionStorage.pass,
}, function (data, status) {
arr = JSON.parse(data);
$("#login").val(arr[0]['idClient']);
load(); //load is a function in which some updates posts are
//called commenting this does not change anything
});