HtmlHelperInputExtensions.CheckBox 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
多載
CheckBox(IHtmlHelper, String) |
<傳回類型為 「checkbox」 的輸入 > 專案,其值為 「true」 ,以及 < 具有指定 |
CheckBox(IHtmlHelper, String, Boolean) |
<傳回類型為 「checkbox」 的輸入 > 專案,其值為 「true」 ,以及 < 具有指定 |
CheckBox(IHtmlHelper, String, Object) |
<傳回類型為 「checkbox」 的輸入 > 專案,其值為 「true」 ,以及 < 具有指定 |
CheckBox(IHtmlHelper, String)
<傳回類型為 「checkbox」 的輸入 > 專案,其值為 「true」 ,以及 < 具有指定 expression
之 值 「false」 類型的輸入 > 專案。 根據中找到的第一個非 null
值,將 「checked」 屬性加入至 「checkbox」 元素: ModelState 具有完整名稱的專案、 ViewData 具有完整名稱的專案,或 expression
根據 評估的專案 Model 。
如需有關「完整名稱」的詳細資訊,請參閱 Name(String) 。
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ CheckBox(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ expression);
public static Microsoft.AspNetCore.Html.IHtmlContent CheckBox (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string expression);
static member CheckBox : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function CheckBox (htmlHelper As IHtmlHelper, expression As String) As IHtmlContent
參數
- htmlHelper
- IHtmlHelper
IHtmlHelper這個方法擴充的實例。
- expression
- String
相對於目前模型的運算式名稱。
傳回
新的 IHtmlContent ,其中包含 < 輸入 > 專案。
備註
HtmlFieldPrefix結合 和 expression
來設定核取方塊專案的 「name」 屬性。
expression
清理以設定核取方塊專案的 「id」 屬性。
適用於
CheckBox(IHtmlHelper, String, Boolean)
<傳回類型為 「checkbox」 的輸入 > 專案,其值為 「true」 ,以及 < 具有指定 expression
之 值 「false」 類型的輸入 > 專案。 根據中找到的第一個非 null
值,將 「checked」 屬性加入至 「checkbox」 元素: ModelState 具有完整名稱的專案、 isChecked
參數、 ViewData 具有完整名稱的專案,或 expression
針對 評估的 Model 。
如需有關「完整名稱」的詳細資訊,請參閱 Name(String) 。
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ CheckBox(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ expression, bool isChecked);
public static Microsoft.AspNetCore.Html.IHtmlContent CheckBox (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string expression, bool isChecked);
static member CheckBox : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * bool -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function CheckBox (htmlHelper As IHtmlHelper, expression As String, isChecked As Boolean) As IHtmlContent
參數
- htmlHelper
- IHtmlHelper
IHtmlHelper這個方法擴充的實例。
- expression
- String
相對於目前模型的運算式名稱。
- isChecked
- Boolean
如果 true
為 ,則一開始會核取核取方塊。
傳回
新的 IHtmlContent ,其中包含 < 輸入 > 專案。
備註
HtmlFieldPrefix結合 和 expression
來設定核取方塊專案的 「name」 屬性。
expression
清理以設定核取方塊專案的 「id」 屬性。
適用於
CheckBox(IHtmlHelper, String, Object)
<傳回類型為 「checkbox」 的輸入 > 專案,其值為 「true」 ,以及 < 具有指定 expression
之 值 「false」 類型的輸入 > 專案。 根據中找到的第一個非 null
值,將 「checked」 屬性新增至 「checkbox」 元素: htmlAttributes
索引鍵為 「checked」 的字典專案、具有完整名稱的專案、 ViewDataModelState 具有完整名稱的專案,或 expression
針對 評估的 Model 。
如需有關「完整名稱」的詳細資訊,請參閱 Name(String) 。
public:
[System::Runtime::CompilerServices::Extension]
static Microsoft::AspNetCore::Html::IHtmlContent ^ CheckBox(Microsoft::AspNetCore::Mvc::Rendering::IHtmlHelper ^ htmlHelper, System::String ^ expression, System::Object ^ htmlAttributes);
public static Microsoft.AspNetCore.Html.IHtmlContent CheckBox (this Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper htmlHelper, string expression, object htmlAttributes);
static member CheckBox : Microsoft.AspNetCore.Mvc.Rendering.IHtmlHelper * string * obj -> Microsoft.AspNetCore.Html.IHtmlContent
<Extension()>
Public Function CheckBox (htmlHelper As IHtmlHelper, expression As String, htmlAttributes As Object) As IHtmlContent
參數
- htmlHelper
- IHtmlHelper
IHtmlHelper這個方法擴充的實例。
- expression
- String
相對於目前模型的運算式名稱。
- htmlAttributes
- Object
Object,包含核取方塊專案的 HTML 屬性。 或者,包含 IDictionary<TKey,TValue> HTML 屬性的實例。
傳回
新的 IHtmlContent ,其中包含 < 輸入 > 專案。
備註
HtmlFieldPrefix結合 和 expression
來設定核取方塊專案的 「name」 屬性。
expression
清理以設定核取方塊專案的 「id」 屬性。