亚洲国产日韩欧美一区二区三区,精品亚洲国产成人av在线,国产99视频精品免视看7,99国产精品久久久久久久成人热,欧美日韩亚洲国产综合乱

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]+":"+"標(biāo)題:"+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 "搜索頁面設(shè)計";
submitReset Code