gpt4 book ai didi

javascript - 使用 jQuery 将数据放入动态内容

转载 作者:行者123 更新时间:2023-11-30 16:14:51 26 4
gpt4 key购买 nike

我正在用 HTML 和 jQuery 编写简单的应用程序。它使用 signalR 连接到 ASP.NEt 服务器。我有用户验证的登录页面。我的<div id="body"></div>认证成功后的内容正在使用 load() 方法更新:

$("#body").load("_ListView.html",InitListPage());

_ListView.html 的内容:

<table id="driversList" align="center">
<thead>
<tr>
<th>Login</th>
<th>Some Data</th>
<th>Another Data</th>
</tr>
</thead>
<tbody>

</tbody>

</table>

我想要的是在加载表格后更新表格的内容。但是 jQuery 看不到我的动态内容。甚至示例代码也无法工作:

function InitListPage(){

$("#driversList").css("border","3px solid red");
}

我怎样才能解决这个问题,也许我做错了?

最佳答案

尝试将函数引用作为callBack函数传递,

$("#body").load("_ListView.html",InitListPage);

你在那里调用它,所以 undefined 将被返回并作为第二个参数传递。那是你的代码的问题。

关于javascript - 使用 jQuery 将数据放入动态内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/35682882/

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