中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

easyui是否支持PHP?

發布時間:2020-04-30 10:39:43 來源:億速云 閱讀:697 作者:小新 欄目:編程語言

今天小編給大家分享的是easyui是否支持PHP,相信很多人都不太了解,為了讓大家更加了解easyui,所以給大家總結了以下內容,一起往下看吧。一定會有所收獲的哦。

easyui是否支持PHP?

easyui支持php,具體的使用方法是使用easyui來搭建頁面結構,然后通過php返回的數據進行展示即可。

EasyUI是一組基于jQuery的UI插件集合體,EasyUI的目標就是幫助web開發者更輕松的打造出功能豐富并且美觀的UI界面。開發者不需要編寫復雜的javascript,也不需要對css樣式有深入的了解,需要了解的只有一些簡單的html標簽。

easyui是否支持PHP?

下面是一個easyUI+PHP展示數據的例子,供各位參考:

1、首先編寫HTML文件

<!DOCTYPE html>
<html>
<head>
    <meta charset="UTF-8">
    <title>Title</title>
    <link rel="stylesheet" type="text/css" href="https://www.jeasyui.com/easyui/themes/default/easyui.css">
    <link rel="stylesheet" type="text/css" href="https://www.jeasyui.com/easyui/themes/icon.css">
    <link rel="stylesheet" type="text/css" href="https://www.jeasyui.com/easyui/themes/color.css">
    <link rel="stylesheet" type="text/css" href="https://www.jeasyui.com/easyui/demo/demo.css">
    <script type="text/javascript" src="/mine/easyui/jquery.min.js"></script>
    <script type="text/javascript" src="/mine/easyui/jquery.easyui.min.js"></script>
</head>
<body>
<table id="dg" title="My Users" style="width:550px;height:250px"
       toolbar="#toolbar" idField="id"
       rownumbers="true" fitColumns="true" singleSelect="true"> 
    <thead>
    <tr>
        <th field="id" width="50" editor="{type:'validatebox',options:{required:true}}">ID</th>
        <th field="user_id" width="50" editor="{type:'validatebox',options:{required:true}}">UID</th>
        <th field="time" width="50" editor="text">TIME</th>
        <th field="type" width="50" editor="{type:'validatebox',options:{required:'true'}}">TYPE</th>
    </tr>
    </thead>
</table>
<script>
    $('#dg').datagrid({
        url: '/index/index/test2',
    });
</script>

</body>
</html>

2、然后編寫PHP文件

<?php
$result = Db::table('o_attend')
            ->select();
$arr['total']=sizeof($result);
$arr['rows']=$result;
echo  json_encode($arr);
?>

3、php返回數據示例:

{
    "total": 2,
    "rows": [{
        "id": 1,
        "user_id": "1",
        "time": "1",
        "type": 1
    }, {
        "id": 2,
        "user_id": "1",
        "time": "1",
        "type": 2
    }]
}

關于easyui是否支持PHP就分享到這里了,當然并不止以上和大家分析的辦法,不過小編可以保證其準確性是絕對沒問題的。希望以上內容可以對大家有一定的參考價值,可以學以致用。如果喜歡本篇文章,不妨把它分享出去讓更多的人看到。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

辽宁省| 镇平县| 泰来县| 丽水市| 牙克石市| 含山县| 桦川县| 资溪县| 阿鲁科尔沁旗| 阜宁县| 左贡县| 邯郸县| 黎平县| 出国| 桐柏县| 海城市| 弋阳县| 福泉市| 牟定县| 朝阳县| 穆棱市| 江阴市| 青铜峡市| 万荣县| 正定县| 巴里| 福安市| 肃南| 武陟县| 枣庄市| 延吉市| 青浦区| 沛县| 永清县| 屯昌县| 南昌县| 博乐市| 阿坝县| 满洲里市| 仁怀市| 阿图什市|