第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號(hào)安全,請(qǐng)及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會(huì)有你想問的

如何關(guān)閉下拉列表所需的消息?

如何關(guān)閉下拉列表所需的消息?

C#
狐的傳說 2022-11-13 13:56:37
我有一個(gè)包含兩個(gè)單選按鈕的表單。一個(gè)與下拉菜單相關(guān)聯(lián),另一個(gè)與文本框相關(guān)聯(lián)。如果用戶選擇第二個(gè)單選按鈕(文本框),我想關(guān)閉下拉菜單所需的消息,因?yàn)楫?dāng)用戶按下“提交”按鈕時(shí),下拉菜單會(huì)顯示一條消息“請(qǐng)選擇一個(gè)列表中的項(xiàng)目?!表槺阏f一句,如果我在選擇第二個(gè)單選按鈕時(shí)禁用下拉菜單,我可以讓它正常工作,但我想知道是否有另一種方法(可能更好),因?yàn)楫?dāng)你禁用下拉菜單時(shí),它會(huì)變灰。截圖:模型:public class EnrollmentModel : Controller{  ...  public bool PriceOption { get; set; }  [RequiredIf("PriceOption == true")]  public string SelectedRatePlan { get; set; }  public IEnumerable<SelectListItem> RatePlans { get; set; }  [RequiredIf("PriceOption == false")]  public string CustomRate { get; set; }  ...}看法:@using (Html.BeginForm()){  @Html.AntiForgeryToken()  <fieldset>    <div class="form-group">      <div class="row">        @Html.Label("Price Option:")      </div>    </div>    <div class="form-group">      <div class="row">        @Html.RadioButtonFor(x => Model.PriceOption, true, htmlAttributes: new { @id = "comed", @class = "col-md-1" })        @Html.Label("Use price from current rate plan")        &nbsp;        &nbsp;        &nbsp;        @Html.DropDownListFor(x => Model.SelectedRatePlan, new SelectList(Model.RatePlans, "Value", "Text"), htmlAttributes: new { @class = "form-control", id = "rateplans", style = "width:100px;", required = "Select Rate Plan" })        @Html.ValidationMessageFor(x => Model.SelectedRatePlan, "", new { @class = "text-danger" })      </div>    </div>    <div class="form-group">      <div class="row">        @Html.RadioButtonFor(x => Model.PriceOption, false, htmlAttributes: new { @id = "custom", @class = "col-md-1" })        @Html.Label("Enter custom price")        &nbsp;        &nbsp;        &nbsp;        @Html.TextBoxFor(x => Model.CustomRate, htmlAttributes: new { @id = "customrate", @class = "form-control", style = "width:100px;" })        @Html.ValidationMessageFor(x => Model.CustomRate, "", new { @class = "text-danger" })      </div>
查看完整描述

1 回答

?
陪伴而非守候

TA貢獻(xiàn)1757條經(jīng)驗(yàn) 獲得超8個(gè)贊

您需要指定該字段在您的模型中是可選的,因?yàn)?bool 不能為 null。添加 ”?” 在“bool”之后或使用“Nullable”而不是“bool”

 public bool? PriceOption { get; set; }

該問號(hào)表示此屬性可以為空。

在此頁面中,您可以找到如何在單選按鈕上實(shí)現(xiàn)更改事件: https ://devdojo.com/tutorials/how-to-detect-radio-box-change-with-jquery

您可以使用以下代碼刪除屬性:

$("#selectElementId").removeAttr("required");


查看完整回答
反對(duì) 回復(fù) 2022-11-13
  • 1 回答
  • 0 關(guān)注
  • 161 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動(dòng)學(xué)習(xí)伙伴

公眾號(hào)

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號(hào)