濮阳杆衣贸易有限公司

主頁 > 知識庫 > Ajax與mysql數(shù)據(jù)交互實現(xiàn)留言板功能

Ajax與mysql數(shù)據(jù)交互實現(xiàn)留言板功能

熱門標(biāo)簽:大眾點評400電話怎么申請 怎樣在地圖標(biāo)注文字 立陶宛地圖標(biāo)注 上海企業(yè)外呼系統(tǒng)價錢 東平縣地圖標(biāo)注app 地圖標(biāo)注推銷坑人 河間市地圖標(biāo)注app 中國地圖標(biāo)注不明確情況介紹表 電銷機器人 長春

最近自己做了一個小demo,實現(xiàn)了Ajax與MySQL的數(shù)據(jù)交互,js部分用的是jq,后臺用的是PHP,數(shù)據(jù)庫是mysql,過時間再來一個node+MongoDB版的。

關(guān)于mysql的使用和安裝,就不多講了,自行百度xampp,Apache服務(wù)器和mysql數(shù)據(jù)庫集成,非常好用

首先打開服務(wù)器和數(shù)據(jù)庫,我這里先建立了一個“eleven”的數(shù)據(jù)庫,下面建立了一個叫做microblog的表(請注意:我這里使用的是高版本的mysql,里面php鏈接數(shù)據(jù)庫的方法使用的都是mysqli_  如果版本過低,請使用mysql_ 方法,自行修改代碼)
以下是代碼部分:

html頁面和js部分:

!DOCTYPE html> 
html> 
  head> 
    meta charset="UTF-8"> 
    title>微博留言板/title> 
    style type="text/css"> 
      *{ 
        margin: 0; 
        padding: 0; 
      } 
      #box{ 
        width: 600px; 
        /*height: 500px;*/ 
        border: 2px solid rgb(85,85,85); 
        border-radius: 15px; 
        margin: 50px auto; 
        padding: 20px 10px 15px; 
        background-color: rgb(85,85,85); 
      } 
      #content{ 
        display: block; 
        resize: none; 
        width: 550px; 
        height: 200px; 
        margin: 0 auto; 
        border: 2px solid rgb(225,225,225); 
        border-radius: 10px; 
        text-align: center; 
        font-size: 30px; 
        background-color: rgb(225,225,225); 
      } 
      #content:focus{ 
        outline: none; 
        border: 2px solid rgb(225,225,225); 
        box-shadow: 0 0 15px rgb(225,225,225); 
      } 
      #btn{ 
        border: 2px solid rgb(255,204,0); 
        width: 80px; 
        height: 40px; 
        border-radius: 5px; 
        margin-top: 30px; 
        font-size: 17px; 
        cursor: pointer; 
        outline: none; 
        background-color: rgb(255,204,0); 
      } 
      .list{ 
        list-style: none; 
        background-color: rgb(249,249,249); 
        margin-top: 20px; 
      } 
      .list>li{ 
        padding: 20px 10px 10px; 
        border-bottom: 2px solid rgb(68,68,68); 
        font-size: 20px; 
        color: rgb(200,214,225); 
        position: relative; 
        word-break: break-word; 
        word-wrap: break-word; 
        background-color: rgb(85,85,85); 
      } 
      .list>li>.control{ 
        position: absolute; 
        bottom: 3px; 
        right: 5px; 
        font-size: 14px; 
      } 
      .list>li>p{ 
        margin-bottom: 25px; 
      } 
      .control span,.control em{ 
        display: inline-block; 
        margin-right: 15px; 
      } 
      .control em{ 
        color: darkblue; 
        cursor: pointer; 
      } 
      a{ 
        text-decoration: none; 
        color: darkred; 
      } 
      #page>a{ 
        display:inline-block; 
        width: 40px; 
        height: 30px; 
        margin-top: 10px; 
        text-align: center; 
        line-height: 30px; 
        font-size: 20px; 
        border-radius: 5px; 
        color: white; 
        background-color: rgb(51,21,70); 
      } 
      #head{ 
        color: rgb(200,214,225); 
        font-size: 30px; 
        height: 50px; 
        border-bottom: 2px solid rgb(68,68,68); 
        margin-bottom: 20px; 
      } 
    /style> 
  /head> 
  body> 
    div id="box"> 
      div id="head"> 
        留言板 
      /div> 
      div id="fill_in"> 
        textarea id="content">/textarea> 
        button id="btn">提交留言/button> 
      /div> 
      !--留言列表--> 
      div id="message_text"> 
        ul class="list"> 
        /ul> 
      /div> 
      !--分頁--> 
      div id="page"> 
        a href="javasript:void(0)">1/a> 
        a href="javasript:void(0)">2/a> 
      /div> 
    /div> 
  /body> 
  script src="Jq/jquery-3.1.1.min.js">/script> 
  script type="text/javascript"> 
    $(function(){ 
      $("#btn").on("click",function(){ 
        if ($("#content").val() == "") { 
          alert("~~客官,說一句再走唄~~  

您可能感興趣的文章:
  • jQuery+Ajax+PHP+Mysql實現(xiàn)分頁顯示數(shù)據(jù)實例講解
  • php+mysql結(jié)合Ajax實現(xiàn)點贊功能完整實例
  • ThinkPHP結(jié)合ajax、Mysql實現(xiàn)的客戶端通信功能代碼示例
  • PHP+Mysql+Ajax+JS實現(xiàn)省市區(qū)三級聯(lián)動
  • 解決了Ajax、MySQL 和 Zend Framework 的亂碼問題
  • 落伍首發(fā) php+mysql 采用ajax技術(shù)的 省 市 地 3級聯(lián)動無刷新菜單 源碼

標(biāo)簽:四川 銅川 本溪 內(nèi)江 玉樹 益陽 遼寧 營口

巨人網(wǎng)絡(luò)通訊聲明:本文標(biāo)題《Ajax與mysql數(shù)據(jù)交互實現(xiàn)留言板功能》,本文關(guān)鍵詞  Ajax,與,mysql,數(shù)據(jù),交互,實現(xiàn),;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡(luò),涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《Ajax與mysql數(shù)據(jù)交互實現(xiàn)留言板功能》相關(guān)的同類信息!
  • 本頁收集關(guān)于Ajax與mysql數(shù)據(jù)交互實現(xiàn)留言板功能的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    邓州市| 大方县| 冷水江市| 长春市| 南康市| 寿宁县| 宁安市| 塘沽区| 陇南市| 平武县| 沙洋县| 通化县| 富民县| 义马市| 黄陵县| 阿坝县| 五大连池市| 镶黄旗| 扬州市| 泉州市| 保定市| 海南省| 白朗县| 新竹市| 昌黎县| 崇左市| 巴中市| 昌平区| 桂阳县| 溧水县| 广平县| 分宜县| 沽源县| 迁西县| 江门市| 朝阳市| 乡城县| 奎屯市| 肃南| 平邑县| 措美县|