共用方式為


HtmlHelper.RadioButton 方法

定義

<傳回指定 expression 之 類型為 「radio」 的輸入 > 專案。 將 「value」 屬性加入至包含 中第一個非 null 值的專案: value 參數,或 htmlAttributes 索引鍵 「value」 的字典專案。 如果 value 符合 中找到的第一個非 null 值,請將 「checked」 屬性新增至 元素: htmlAttributes 索引鍵為 「checked」 的字典專案、具有完整名稱的專案、 ViewDataModelState 具有完整名稱的專案,或 expression 針對 評估的 Model 。 如果 isChecked 不是 null ,請改用中找到的第一個非 null 值: ModelState 具有完整名稱的專案或 isChecked 參數。 如需有關「完整名稱」的詳細資訊,請參閱 Name(String)

public:
 virtual Microsoft::AspNetCore::Html::IHtmlContent ^ RadioButton(System::String ^ expression, System::Object ^ value, Nullable<bool> isChecked, System::Object ^ htmlAttributes);
public Microsoft.AspNetCore.Html.IHtmlContent RadioButton (string expression, object value, bool? isChecked, object htmlAttributes);
abstract member RadioButton : string * obj * Nullable<bool> * obj -> Microsoft.AspNetCore.Html.IHtmlContent
override this.RadioButton : string * obj * Nullable<bool> * obj -> Microsoft.AspNetCore.Html.IHtmlContent
Public Function RadioButton (expression As String, value As Object, isChecked As Nullable(Of Boolean), htmlAttributes As Object) As IHtmlContent

參數

expression
String

相對於目前模型的運算式名稱。

value
Object

如果不是 null ,則為 要包含在 元素中的值。 如果 nullisChecked 也是 null ,而且 中 htmlAttributes 沒有「核取」專案,則不得為 。

isChecked
Nullable<Boolean>

如果 true 為 ,則一開始選取選項按鈕。 如果 nullvalue 也是 null ,而且 中 htmlAttributes 沒有「核取」專案,則不得為 。

htmlAttributes
Object

Object,包含 專案的 HTML 屬性。 或者,包含 IDictionary<TKey,TValue> HTML 屬性的實例。

傳回

新的 IHtmlContent ,其中包含 < 輸入 > 專案。

實作

適用於