InputExtensions.RadioButton 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
RadioButton(HtmlHelper, String, Object) |
傳回用來顯示互斥選項的選項按鈕 input 元素。 |
RadioButton(HtmlHelper, String, Object, Boolean) |
傳回用來顯示互斥選項的選項按鈕 input 元素。 |
RadioButton(HtmlHelper, String, Object, IDictionary<String,Object>) |
傳回用來顯示互斥選項的選項按鈕 input 元素。 |
RadioButton(HtmlHelper, String, Object, Object) |
傳回用來顯示互斥選項的選項按鈕 input 元素。 |
RadioButton(HtmlHelper, String, Object, Boolean, IDictionary<String,Object>) |
傳回用來顯示互斥選項的選項按鈕 input 元素。 |
RadioButton(HtmlHelper, String, Object, Boolean, Object) |
傳回用來顯示互斥選項的選項按鈕 input 元素。 |
RadioButton(HtmlHelper, String, Object)
傳回用來顯示互斥選項的選項按鈕 input 元素。
public static System.Web.Mvc.MvcHtmlString RadioButton (this System.Web.Mvc.HtmlHelper htmlHelper, string name, object value);
static member RadioButton : System.Web.Mvc.HtmlHelper * string * obj -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function RadioButton (htmlHelper As HtmlHelper, name As String, value As Object) As MvcHtmlString
參數
- htmlHelper
- HtmlHelper
此方法擴充的 HTML Helper 執行個體。
- name
- String
表單域的名稱,以及 ViewDataDictionary 用來查閱值的索引鍵。
- value
- Object
選取之圓鈕的值。 此值會依這個順序擷取 - ModelStateDictionary 物件、此參數的值、 ViewDataDictionary 物件,最後是 html 屬性中的值屬性。
傳回
其 type 屬性設定為 "radio" 的 input 元素。
例外狀況
參數 name
為 Null 或空白。
value
參數為 null。
適用於
RadioButton(HtmlHelper, String, Object, Boolean)
傳回用來顯示互斥選項的選項按鈕 input 元素。
public static System.Web.Mvc.MvcHtmlString RadioButton (this System.Web.Mvc.HtmlHelper htmlHelper, string name, object value, bool isChecked);
static member RadioButton : System.Web.Mvc.HtmlHelper * string * obj * bool -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function RadioButton (htmlHelper As HtmlHelper, name As String, value As Object, isChecked As Boolean) As MvcHtmlString
參數
- htmlHelper
- HtmlHelper
此方法擴充的 HTML Helper 執行個體。
- name
- String
表單域的名稱,以及 ViewDataDictionary 用來查閱值的索引鍵。
- value
- Object
選取之圓鈕的值。 此值會依這個順序擷取 - ModelStateDictionary 物件、此參數的值、 ViewDataDictionary 物件,最後是 html 屬性中的值屬性。
- isChecked
- Boolean
true 表示選取選項按鈕;否則為 false。
傳回
其 type 屬性設定為 "radio" 的 input 元素。
例外狀況
參數 name
為 Null 或空白。
value
參數為 null。
適用於
RadioButton(HtmlHelper, String, Object, IDictionary<String,Object>)
傳回用來顯示互斥選項的選項按鈕 input 元素。
public static System.Web.Mvc.MvcHtmlString RadioButton (this System.Web.Mvc.HtmlHelper htmlHelper, string name, object value, System.Collections.Generic.IDictionary<string,object> htmlAttributes);
static member RadioButton : System.Web.Mvc.HtmlHelper * string * obj * System.Collections.Generic.IDictionary<string, obj> -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function RadioButton (htmlHelper As HtmlHelper, name As String, value As Object, htmlAttributes As IDictionary(Of String, Object)) As MvcHtmlString
參數
- htmlHelper
- HtmlHelper
此方法擴充的 HTML Helper 執行個體。
- name
- String
表單域的名稱,以及 ViewDataDictionary 用來查閱值的索引鍵。
- value
- Object
選取之圓鈕的值。 此值會依這個順序擷取 - ModelStateDictionary 物件、此參數的值、 ViewDataDictionary 物件,最後是 html 屬性中的值屬性。
- htmlAttributes
- IDictionary<String,Object>
物件,包含要針對項目設定的 HTML 屬性。
傳回
其 type 屬性設定為 "radio" 的 input 元素。
例外狀況
參數 name
為 Null 或空白。
value
參數為 null。
適用於
RadioButton(HtmlHelper, String, Object, Object)
傳回用來顯示互斥選項的選項按鈕 input 元素。
public static System.Web.Mvc.MvcHtmlString RadioButton (this System.Web.Mvc.HtmlHelper htmlHelper, string name, object value, object htmlAttributes);
static member RadioButton : System.Web.Mvc.HtmlHelper * string * obj * obj -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function RadioButton (htmlHelper As HtmlHelper, name As String, value As Object, htmlAttributes As Object) As MvcHtmlString
參數
- htmlHelper
- HtmlHelper
此方法擴充的 HTML Helper 執行個體。
- name
- String
表單域的名稱,以及 ViewDataDictionary 用來查閱值的索引鍵。
- value
- Object
選取之圓鈕的值。 此值會依這個順序擷取 - ModelStateDictionary 物件、此參數的值、 ViewDataDictionary 物件,最後是 html 屬性中的值屬性。
- htmlAttributes
- Object
物件,包含要針對項目設定的 HTML 屬性。
傳回
其 type 屬性設定為 "radio" 的 input 元素。
例外狀況
參數 name
為 Null 或空白。
value
參數為 null。
適用於
RadioButton(HtmlHelper, String, Object, Boolean, IDictionary<String,Object>)
傳回用來顯示互斥選項的選項按鈕 input 元素。
public static System.Web.Mvc.MvcHtmlString RadioButton (this System.Web.Mvc.HtmlHelper htmlHelper, string name, object value, bool isChecked, System.Collections.Generic.IDictionary<string,object> htmlAttributes);
static member RadioButton : System.Web.Mvc.HtmlHelper * string * obj * bool * System.Collections.Generic.IDictionary<string, obj> -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function RadioButton (htmlHelper As HtmlHelper, name As String, value As Object, isChecked As Boolean, htmlAttributes As IDictionary(Of String, Object)) As MvcHtmlString
參數
- htmlHelper
- HtmlHelper
此方法擴充的 HTML Helper 執行個體。
- name
- String
表單域的名稱,以及 ViewDataDictionary 用來查閱值的索引鍵。
- value
- Object
選取之圓鈕的值。 此值會依這個順序擷取 - ModelStateDictionary 物件、此參數的值、 ViewDataDictionary 物件,最後是 html 屬性中的值屬性。
- isChecked
- Boolean
true 表示選取選項按鈕;否則為 false。
- htmlAttributes
- IDictionary<String,Object>
物件,包含要針對項目設定的 HTML 屬性。
傳回
其 type 屬性設定為 "radio" 的 input 元素。
例外狀況
參數 name
為 Null 或空白。
value
參數為 null。
適用於
RadioButton(HtmlHelper, String, Object, Boolean, Object)
傳回用來顯示互斥選項的選項按鈕 input 元素。
public static System.Web.Mvc.MvcHtmlString RadioButton (this System.Web.Mvc.HtmlHelper htmlHelper, string name, object value, bool isChecked, object htmlAttributes);
static member RadioButton : System.Web.Mvc.HtmlHelper * string * obj * bool * obj -> System.Web.Mvc.MvcHtmlString
<Extension()>
Public Function RadioButton (htmlHelper As HtmlHelper, name As String, value As Object, isChecked As Boolean, htmlAttributes As Object) As MvcHtmlString
參數
- htmlHelper
- HtmlHelper
此方法擴充的 HTML Helper 執行個體。
- name
- String
表單域的名稱,以及 ViewDataDictionary 用來查閱值的索引鍵。
- value
- Object
選取之圓鈕的值。 此值會依這個順序擷取 - ModelStateDictionary 物件、此參數的值、 ViewDataDictionary 物件,最後是 html 屬性中的值屬性。
- isChecked
- Boolean
true 表示選取選項按鈕;否則為 false。
- htmlAttributes
- Object
物件,包含要針對項目設定的 HTML 屬性。
傳回
其 type 屬性設定為 "radio" 的 input 元素。
例外狀況
參數 name
為 Null 或空白。
value
參數為 null。