<html>
<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.0/jquery.min.js"></script>
<script>
$(document).ready(function() {
var refresh_id = setInterval(function() {
$.get(
"{{ url_for('thread_status') }}",
function(data) {
console.log(data);
if (data.status == 'finished') {
window.location.replace("{{ url_for('result') }}");
}
}
)}
, 1000);
});
</script>
</head>
<body>
<p>Loading...</p>
</body>
</html>
我不知道,但有时按钮出现(据我所知),有时按钮不会出现,直到鼠标悬停它。你能解释一下它是错误还是我做错了什么。
答案 0 :(得分:0)
方法
重绘()
是一个解决方案