我使用PHP從html頁面獲取單選按鈕值。我的HTML看起來像這樣:html中名稱屬性的有效值
<input type="radio" name="1.1" value="yes">
<input type="radio" name="1.1" value="no">
<input type="radio" name="1" value="yes">
<input type="radio" name="1" value="no">
其結果是,$ _ POST [ '1']返回值,但$ _ POST [ '1.1']返回任何內容。我檢查了html 4的規格,說名稱屬性的值只以字母開頭,但1不是一個字母,它怎麼得到它返回而1.1不呢?還是在這裏發生了一些其他的魔法?我使用最新版本的Chrome。謝謝。
感謝您發佈第二個鏈接! – Michael 2012-04-29 07:27:42
以下是name屬性的相應HTML5文檔:https://www.w3.org/TR/html5/forms.html#naming-form-controls:-the-name-attribute – 2017-03-28 15:18:52
@Jukka K. Korpela:什麼這是否意味着,如果你寫'不要混淆與被聲明爲具有NAME類型的屬性的引用。在哪裏或有什麼區別? – John 2017-11-25 03:10:09