3 回答

TA貢獻(xiàn)1797條經(jīng)驗(yàn) 獲得超4個(gè)贊
使用類似的方法將文件以及其他輸入發(fā)送到處理頁(yè)面,您可以在其中訪問(wèn)文件和發(fā)布變量。
<form action="#" method="post" enctype="multipart/form-data">
<input type="text" name="txtbox">
<br />
<input type="file" name="filebox">
<br />
<input type="submit" name="submit" value="submit">
</form>
提交后,您可以訪問(wèn) $_FILES 和 $_POST 中的數(shù)據(jù)

TA貢獻(xiàn)1909條經(jīng)驗(yàn) 獲得超7個(gè)贊
HTML 中有多種輸入類型,如下所示:
<input type="button">
<input type="checkbox">
<input type="color">
<input type="date">
<input type="datetime-local">
<input type="email">
<input type="file">
<input type="hidden">
<input type="image">
<input type="month">
<input type="number">
<input type="password">
<input type="radio">
<input type="range">
<input type="reset">
<input type="search">
<input type="submit">
<input type="tel">
<input type="text">
<input type="time">
<input type="url">
<input type="week">
上述每個(gè)輸入都需要滿足不同的條件和格式。
對(duì)于您的查詢,答案是:
<input type="file">
適用于需要文件格式輸入的網(wǎng)頁(yè)。或者,
<input type="image">
適用于需要以圖像格式輸入的網(wǎng)頁(yè)。
- 3 回答
- 0 關(guān)注
- 174 瀏覽
添加回答
舉報(bào)