程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 關於php程序員必知必會的一些html知識

關於php程序員必知必會的一些html知識

編輯:關於PHP編程

      1.form表單,
    <form name="form1" id="form1" method="GET/POST" action = "提交url"  target=“_blank,_parent,_self,_top” enctype="multipart/form-data" />
    <input type=“text” name=“” id="" value="" class="" />
     <input type=“password” name=“” id="" value="" class="" />
    <input type=“file” name=“” id="" value="" class="" accept=“” />上傳文件  一定要用post方法上傳   還要是enctype="multipart/form-data"   
    <input type="file" accept="application/msword" ><br><br>accept屬性列表<br>
    1.accept="application/msexcel"
    2.accept="application/msword"
    3.accept="application/pdf"
    4.accept="application/poscript"
    5.accept="application/rtf"
    6.accept="application/x-zip-compressed"
    7.accept="audio/basic"
    8.accept="audio/x-aiff"
    9.accept="audio/x-mpeg"
    10.accept="audio/x-pn/realaudio"
    11.accept="audio/x-waw"
    12.accept="image/gif"
    13.accept="image/jpeg"
    14.accept="image/tiff"
    15.accept="image/x-ms-bmp"
    16.accept="image/x-photo-cd"
    17.accept="image/x-png"
    18.accept="image/x-portablebitmap"
    19.accept="image/x-portable-greymap"
    20.accept="image/x-portable-pixmap"
    21.accept="image/x-rgb"
    22.accept="text/html"
    23.accept="text/plain"
    24.accept="video/quicktime"
    25.accept="video/x-mpeg2"
    26.accept="video/x-msvideo"
    在這裡如果想支持多種類型的話,比如金山的office和microsoft的office的不同擴展名,這樣的話可以在accept裡面放置多個屬性就可以了:
    <form> <input type="file" name="pic" id="pic" accept="image/gif, image/jpeg" /></form>
    如果不限制圖像的格式,可以寫為:accept="image/*"。同樣是可以的
    php處理頁面的獲取$_FILES['NAME']['name']
    <input type=“image” name=“” id="" class=""  src="路徑" />具備按鈕功能哦
    <input type=“radio” name=“” id="" value="" class="" checked="checked" /> 一組用相同的name
    <input type=”checkbox“ name=“name[]” id="" value="" class=""  checked="checked" />  dom對象.checked  = true or false
    <input type=“submit” name=“” id="" value="" class="" />提交
    <input type=“reset” name=“” id="" value="" class="" />重置表單
    <input type=“button” name=“” id="" value="" class="" />按鈕
    <input type=“hidden” name=“” id="" value="" class="" />隱藏域
    <select name="" id=""  class="" >
    <option value=""  selected='selected'>value1</option>
    </select>
    <select name="" id="" size=“” class="" multiple >
    //菜單格式,全部列出來
    可以有多個選中
    <option value="">value1</option>
    </select>
    <textarea name="" id="" rows="" cols="" value="" >xxxxx</textarea>
    </form>
    id唯一
    URL編碼。中文,特殊符號,等。
    url的參數如果有特殊符號,?/等,可以urlencode編碼。。。。獲取後用urldecode解碼。

    1. 上一頁:
    2. 下一頁:
    Copyright © 程式師世界 All Rights Reserved