使用php和ajax获取数据后刷新jquery mobile div

时间:2015-06-23 20:44:55

标签: php jquery-mobile-ajax

php文件:

if (mysql_num_rows($result) > 0) {
// output data of each row
while($row = mysql_fetch_assoc($result)) {
     $orgID=$row["InstancesID"];
    echo "description: " . $row["describtion"]. "<br><br>"." - Type: " . $row["type"]. "<br><br>". "-Amount: " . $row["amount"]. "<br><br>";
    echo"<input type='button'  onclick=SendID($orgID) value='updateee'/> <br><br>";
}

ajax功能:

$(document).ready(function(){
$("#show").click(function(){


    $.ajax({url: "http://127.0.0.1/testupdate.php?f=ShowAllInstances",

            success: function(result){
            //alert(result);
       $("#divshow").html(result);
    }});
});
});

这将在html页面中显示返回的数据我想在jquery移动页面中显示它们。 任何帮助,请

0 个答案:

没有答案