国产av日韩一区二区三区精品,成人性爱视频在线观看,国产,欧美,日韩,一区,www.成色av久久成人,2222eeee成人天堂

Message search design

1, add a new search button in the message board

<?php
<div>搜索:<input id="con" name="sousuo"><input id="sousuo" type="button" value="確定"></div>

Add new js code:

<?php
$("#sousuo").click(function () {
    str="";
    var con=$("#con").val();
    $.get("messageshowdb.php?content=sousuo",{con:con,page:page,num:num},function (data) {
        $.each(data, function(key,value) {
            str+="<div>"+[key]+":"+"標題:"+value.title+"-----"+"內(nèi)容:"+value.content+"</div>";
            $("#div1").html(str);
        });
    },"json")
    showpage();
})

2, modify the messageshowbd.php file:

Add the following code:

微信圖片_20180308112333.png

3. Effect display:

gif5新文件 (20).gif

Continuing Learning
||
<?php echo "搜索頁面設計";
submitReset Code