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

來源:互聯網
上載者:User

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解碼。

本文連結http://www.cxybl.com/html/wlbc/Php/20130616/38659.html

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.