将数据从 ajax 发送到 jquery appendTo?
send data from ajax to a jquery appendTo?
我已经实现了一个 ajax,每次更新数据库 table 中的元素时,它都会将 tr 和 td 发送到 html table ,我想将 ajax html 数据发送到附加,然后从那里发送到正文,而不是直接从 ajax 到正文,有人知道吗?
这是我的 php:
<?php if($total>0 && $search!='')
{
do {
echo "<tr><form method='post' action='modifystatusdown.php'>
<td style='width:20%; '><input type='text'><input type='hidden'>";
echo $fila['nombre'];
echo "</td><td style='width:20%;'>";
echo $fila['telefono'];
echo "</td><td style='width:20%;'>";
echo "<input type='Submit' name='delete' value='Atendido'></td></form></tr>";
}
while ($fila=mysqli_fetch_assoc($resultado));
} ?>
这是发给这个 ajax:
$(document).ready(function()
{
function actualizar()
{
value = $('#value').html();
$.ajax(
{
type: "POST",
url: "../solicitudes/buscador.php",
success: function(data)
{
$('#value').html(data);
}
})
}
setInterval(actualizar, 3000);
})
最终从 ajax 发送到 div 中的 table:
<div class="container">
<table id="value">
</table>
</div>
我如何将它发送到追加,然后再发送到 table?而不是直接来自 ajax?
想法是这样的,在数据库的 table 中,我有一个初始化为 0 的状态列,每次有人从应用程序请求服务时,状态都会改变 android to 1,我上面说的是working,我要实现的是每次status等于1,然后出现在一个html页面,就像已经出现在html页面一样,问题是分配了一个输入字段,您可以在其中输入要分配给请求的用户的服务,并且将它们插入到 html 中的 table 每 5 秒刷新一次,您不能写在文本中,因为它每次清除都会自动刷新table,
您可以同时使用 $.post 和 $.get
即$.post('url', {datatoappend: 'append'}, function(data){
$.get('urlwithsentdata', function(data){
});
});
这很好用
我已经实现了一个 ajax,每次更新数据库 table 中的元素时,它都会将 tr 和 td 发送到 html table ,我想将 ajax html 数据发送到附加,然后从那里发送到正文,而不是直接从 ajax 到正文,有人知道吗? 这是我的 php:
<?php if($total>0 && $search!='')
{
do {
echo "<tr><form method='post' action='modifystatusdown.php'>
<td style='width:20%; '><input type='text'><input type='hidden'>";
echo $fila['nombre'];
echo "</td><td style='width:20%;'>";
echo $fila['telefono'];
echo "</td><td style='width:20%;'>";
echo "<input type='Submit' name='delete' value='Atendido'></td></form></tr>";
}
while ($fila=mysqli_fetch_assoc($resultado));
} ?>
这是发给这个 ajax:
$(document).ready(function()
{
function actualizar()
{
value = $('#value').html();
$.ajax(
{
type: "POST",
url: "../solicitudes/buscador.php",
success: function(data)
{
$('#value').html(data);
}
})
}
setInterval(actualizar, 3000);
})
最终从 ajax 发送到 div 中的 table:
<div class="container">
<table id="value">
</table>
</div>
我如何将它发送到追加,然后再发送到 table?而不是直接来自 ajax?
想法是这样的,在数据库的 table 中,我有一个初始化为 0 的状态列,每次有人从应用程序请求服务时,状态都会改变 android to 1,我上面说的是working,我要实现的是每次status等于1,然后出现在一个html页面,就像已经出现在html页面一样,问题是分配了一个输入字段,您可以在其中输入要分配给请求的用户的服务,并且将它们插入到 html 中的 table 每 5 秒刷新一次,您不能写在文本中,因为它每次清除都会自动刷新table,
您可以同时使用 $.post 和 $.get
即$.post('url', {datatoappend: 'append'}, function(data){
$.get('urlwithsentdata', function(data){
});
});
这很好用