我有一个 PHP 页面,我在其中显示从数据库获得的 Div 值。这个 div 使用 Ajax 自动加载数据。我的问题是,当重新加载 Div 时,我不能使用 Jquery 函数或属性覆盖 Div 中的对象(就像在按钮中转换标签一样)。
这是我正在使用的代码://jquery
$(function() {
$("label").button();
});
//ajax
var RequestObject = false;
var unidad = <?php echo json_encode($unidad);?>;
parametros='?unidad='+ unidad;
var Archivo = 'obtiene_ultimas_lecturas.php'+ parametros ;
window.setInterval("actualizacion_reloj()", 15000);
if (window.XMLHttpRequest)
RequestObject = new XMLHttpRequest();
if (window.ActiveXObject)
RequestObject = new ActiveXObject("Microsoft.XMLHTTP");
function ReqChange() {
if (RequestObject.readyState==4) {
if (RequestObject.responseText.indexOf('invalid') == -1)
{
document.getElementById("marco").innerHTML = RequestObject.responseText;
}
else
{
document.getElementById("marco").innerHTML = "Error llamando";
}
}
}
function llamadaAjax() {
RequestObject.open("GET", Archivo , true);
RequestObject.onreadystatechange = ReqChange;
RequestObject.send(null);
}
function actualizacion_reloj() {
llamadaAjax();
}
//html
<div id="marco" name="marco">
<table>
<tr class="Estilo4">
<td align="center"><input name="nge" type="text" size="9" value="<?php printf("%.3f",$nge); ?>" /> <label>m³</label></td>
</tr>
</table>
</div>
这基本上是我的代码,我想包含在 div 中的标签可以获得 'button' 属性。