Web Dev Roadmap for Beginners (Free!): https://bit.ly/DaveGrayWebDevRoadmapHTML forms and inputs can be confusing for beginners. ... <看更多>
html form input 在 tailwindlabs/tailwindcss-forms 的推薦與評價
GitHub - tailwindlabs/tailwindcss-forms: A plugin that provides a basic reset for form ... Or change a checkbox color using text color utilities: --> <input ... ... <看更多>
html form input 在 Fw: [問題] 單一form如何送出兩筆資料? - 看板Ajax 的推薦與評價
※ [本文轉錄自 Web_Design 看板 #1G15YhZW ]
https://jsfiddle.net/fTrgq/
<form action="~~~" method="POST" id="FormMain">
名字: <input name="S1" type="text" /><br />
名字: <input name="S1" type="text" /><br />
<input name="submit" value="提交" type="submit" />
</form>
若有一表單,
希望能一次送出多筆資料(也就是兩個同name的資料)
該如何實作?
( html有辦法作嗎?
還是要用到javascript? )
先此感謝~
### 增補敘述 ###
1. 資料接收端是google Doc >> 沒法改後端的語法
所以只能從js, html 下手
2. 表單輸入的 name 無法自訂(google form自動生成)
3. 資料形式如同團體報名表,一次會有複數位的人名需要輸入
(故測試例先以兩位做為測試)
4. 若有需求的話,html資料可改成下列這樣(變兩張form)
<form action="">
<input type="text" name="S1" />
<input type="submit" style="display:none;" />
</form>
<form action="">
<input type="text" name="S1" />
<input type="submit" style="display:none;" />
</form>
<a id="js_submitALL">全送出</a>
若然,則該如何按一次鈕送出兩張form裡的資料呢?
很抱歉對表單處理一直都不太熟
希望能藉這些練習多加強~~ ^^"
--
※ 發信站: 批踢踢實業坊(ptt.cc)
◆ From: 123.240.214.42
... <看更多>