gpt4 book ai didi

javascript - 页面加载后加载mysql查询

转载 作者:行者123 更新时间:2023-11-29 21:00:34 24 4
gpt4 key购买 nike

我有一些非常大的查询,我只希望查询在页面加载完成后运行它们。

这是我试过的。

<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript">
$(window).load(function() {
$("#query").load("sql-query.php");
});
</script>
</head>

<div id="query">Loading...</div>

sql-query.php

$data = DB::table('tapplicant')->limit(5000)->get();
var_dump($data);

想法是在页面加载后返回查询数据。

最佳答案

版本不匹配 "Uncaught TypeError: a.indexOf is not a function" error when opening new foundation project

<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript">
/*
$( window ).load(function() {
$("#query").load("sql-query.php");
});
*/
$(window).on('load', function(){
$("#query").load("sql-query.php");
});
</script>
</head>

<div id="query">Loading...</div>

建议您使用文档就绪函数(即 $(function())代替窗口加载 document.ready vs window

<head>
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.2.1/jquery.min.js"></script>
<script type="text/javascript">
$(function() {
$("#query").load("sql-query.php");
});
</script>
</head>

<div id="query">Loading...</div>

关于javascript - 页面加载后加载mysql查询,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46688637/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com