gpt4 book ai didi

javascript - jquery mobile 没有将 div 附加到内容

转载 作者:可可西里 更新时间:2023-11-01 14:52:55 27 4
gpt4 key购买 nike

我有一个脚本应该将一些元素附加到 Content div,但它不起作用。如您所见,“messageBox”的内容来自一个 php 文件,该文件选择了 mysql 表和其中的数据。

这是 JS 文件的内容:

    function getWallMsg(){
$.getJSON('SELECT_uzenofal.php?callback=?',function(data) {
data.forEach(function(e){
$('#posts').append($('<div class="messageBox">'+'<img src="img/profilok/'+e.kep+'"/>'+'<p class="name">'+e.nev+'</p>'+'<p>'+e.uzenet+'</p>'+'<p class="time">'+e.ido+'</p>'+'</div>'));
});
});
}

$(document).ready(function(){
drawNavbar();
getWallMsg();
});

和 html:

<html>
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8" >
<link rel="stylesheet" href="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.css" />
<link rel="stylesheet" type="text/css" href="css/main.css">
<script src="http://code.jquery.com/jquery-1.8.2.min.js"></script>
<script type="text/javascript" src="js/main.js"></script>
<script src="http://code.jquery.com/mobile/1.3.0/jquery.mobile-1.3.0.min.js"></script>
</head>
<body>
<!-- Home -->
<div data-role="page" id="fal">
<!-- header -->
<div data-role="header">
<h3>
Üzenőfal
</h3>
</div>
<!-- content -->
<div data-role="content" id="posts">

</div>
<!-- footer -->
<div class="nav" data-role="footer" data-position="fixed" data-theme="a"></div>
</div>
</body>

我该怎么办?

最佳答案

这应该改变:

$(document).ready(function(){
drawNavbar();
getWallMsg();
});

为此:

$(document).on('pagebeforeshow', '#fal', function(){       
drawNavbar();
getWallMsg();
});

基本上 document ready 不应与 jQuery Mobile 一起使用,要了解更多信息,请查看此 ARTICLE ,说白了这是我的个人博客。或者找 HERE

基本上,您正试图将其附加到 document ready 当页面内容未加载到 DOM。取而代之的是 jQuery Mobile 页面事件,如 pagebeforeshow ,应该使用。

编辑:

您甚至在 pagebeforeshow 中添加了不正确的 ID。它现在应该工作了。

关于javascript - jquery mobile 没有将 div 附加到内容,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/15506989/

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