gpt4 book ai didi

javascript - 从 php 返回的表未使用 jquery 添加到给定的 div

转载 作者:行者123 更新时间:2023-11-28 12:27:52 25 4
gpt4 key购买 nike

我正在尝试构建一个页面,向用户实时显示当前的外汇汇率。因此,我从提要中获取值并将其回显到表格中。现在我想使用 jquery 向用户展示。

问题是我尝试将返回的表添加到 div,但该表没有添加到给定的 div id。如果是 firebug,它会在控制台模式下显示正确的表格

我的PHP

 echo '<table>
<thead>
<tr>
<th class="instrument child_1">
<span>Currency</span>
</th>
<th>
<span>Buy</span>
</th>
<th">
<span>Sell</span>
</th>
<th>
<span>GMT Time</span>
</th>
</tr>
</thead>
<tbody>';
foreach ($xml->Rate as $rate) {
echo' <tr>
<td> '.$rate->Symbol.'</td>
<td>
'.$rate->Buy.'
</td>
<td>
'.$rate->Sell.'
</td>
<td>
'.$rate->Last.'
</td>';
}
echo ' </tbody>
</table>';

Jquery代码

<script type="text/javascript">
$(document).ready(function()
{
new get_feed();

});

</script>

<script type="text/javascript">
function get_feed(){
var feed = $.ajax({
type: "POST",
url: "feed2.php",
cache: false,
}).success(function(){

setTimeout(function(){get_feed();}, 10000);
});
$('#feeds').html(feed);

}
</script>

HTML

<div id="feeds">

</div>

任何帮助将不胜感激

最佳答案

尝试这个($.ajax调用不返回值,您需要通过成功处理程序传递该值)

<script type="text/javascript">
$(document).ready(function() {
get_feed();
});
</script>

<script type="text/javascript">
function get_feed(){
$.ajax({
type: "POST",
url: "feed2.php",
cache: false,
}).success(function(data){
$('#feeds').html(data);
setTimeout(function(){get_feed();}, 10000);
});
}
</script>

关于javascript - 从 php 返回的表未使用 jquery 添加到给定的 div,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/26139991/

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