将条件更改为灰色文本字段

时间:2014-04-05 12:29:32

标签: c# asp.net asp.net-mvc asp.net-mvc-3 razor

我使用下面的代码,它是通过MVC5应用程序创建的,我的字段名为Type,这是下拉列表,我需要的是当你通过defult它的Dev改变为Prod时,用户和密码框将变灰(下拉列表字段 - 输入)用户和passowrd字段更改为启用,我该怎么做?

public class Ad
{
public int ID { get; set; }
public string Name { get; set; }

public string User { get; set; }

public string Password { get; set; }

public IEnumerable<SelectListItem> Type
{
get
{
return new[]
{
new SelectListItem {Value = "D", Text = "Dev"},
new SelectListItem {Value = "p", Text = "Production"}
};
}
}

创建生成的代码

@{
    ViewBag.Title = "Create";
}

<h2>Create</h2>


@using (Html.BeginForm()) 
{
    @Html.AntiForgeryToken()

    <div class="form-horizontal">
        <h4>Admin</h4>
        <hr />
        @Html.ValidationSummary(true)

        <div class="form-group">
            @Html.LabelFor(model => model.Name, new { @class = "control-label col-md-2" })
            <div class="col-md-10">
                @Html.EditorFor(model => model.Name)
                @Html.ValidationMessageFor(model => model.Name)
            </div>
        </div>

        <

        <div class="form-group">
            @Html.LabelFor(model => model.User, new { @class = "control-label col-md-2" })
            <div class="col-md-10">
                @Html.EditorFor(model => model.User)
                @Html.ValidationMessageFor(model => model.User)
            </div>
        </div>

        <div class="form-group">
            @Html.LabelFor(model => model.Password, new { @class = "control-label col-md-2" })
            <div class="col-md-10">
                @Html.EditorFor(model => model.Password)
                @Html.ValidationMessageFor(model => model.Password)
            </div>
        </div>

        <div class="form-group">
            @Html.LabelFor(model => model.Type, new { @class = "control-label col-md-2" })
            <div class="col-md-10">
                @Html.DropDownListFor(model => model.Type, Model.Type)

            </div>
        </div>

        <div class="form-group">
            <div class="col-md-offset-2 col-md-10">
                <input type="submit" value="Create" class="btn btn-default" />
            </div>
        </div>
    </div>
}

<div>
    @Html.ActionLink("Back to List", "Index")
</div>

@section Scripts {
    @Scripts.Render("~/bundles/jqueryval")
}

使用脚本更新代码

@{
    ViewBag.Title = "Create";
}

<h2>Create</h2>

<script type="text/javascript">

    $('select[name="Type"]').change(function () {

        if ($(this).val() === 'Production')
        {

            $('input[name="User"]').prop("disabled",true);
            $('input[name="Password"]').prop("disabled",true);
        }

        else
        {
            $('input[name="User"]').prop("disabled",false);
            $('input[name="Password"]').prop("disabled",false);
        }

    });
</script>


@using (Html.BeginForm()) 
{
    @Html.AntiForgeryToken()

    <div class="form-horizontal">
        <h4>Admin</h4>
        <hr />
        @Html.ValidationSummary(true)

        <div class="form-group">
            @Html.LabelFor(model => model.Name, new { @class = "control-label col-md-2" })
            <div class="col-md-10">
                @Html.EditorFor(model => model.Name)
                @Html.ValidationMessageFor(model => model.Name)
            </div>
        </div>

        <

        <div class="form-group">
            @Html.LabelFor(model => model.User, new { @class = "control-label col-md-2" })
            <div class="col-md-10">
                @Html.EditorFor(model => model.User)
                @Html.ValidationMessageFor(model => model.User)
            </div>
        </div>

        <div class="form-group">
            @Html.LabelFor(model => model.Password, new { @class = "control-label col-md-2" })
            <div class="col-md-10">
                @Html.EditorFor(model => model.Password)
                @Html.ValidationMessageFor(model => model.Password)
            </div>
        </div>

        <div class="form-group">
            @Html.LabelFor(model => model.Type, new { @class = "control-label col-md-2" })
            <div class="col-md-10">
                @Html.DropDownListFor(model => model.Type, Model.Type)

            </div>
        </div>

        <div class="form-group">
            <div class="col-md-offset-2 col-md-10">
                <input type="submit" value="Create" class="btn btn-default" />
            </div>
        </div>
    </div>
}

<div>
    @Html.ActionLink("Back to List", "Index")
</div>

@section Scripts {
    @Scripts.Render("~/bundles/jqueryval")
}

2 个答案:

答案 0 :(得分:1)

你需要使用像这样的jquery:

<script type="text/javascript">

    $(document).ready(function(){

    $('select[name="Type"]').change(function(){

    if($(this).val() === 'prod')
    {

        $('input[name="User"]').prop("disabled",true);
        $('input[name="Password"]').prop("disabled",true);
    }

        else
        {
        $('input[name="User"]').prop("disabled",false);
        $('input[name="Password"]').prop("disabled",false);
        }

    });
});

</script>

这是Fiddle DEMO

答案 1 :(得分:1)

您可以使用以下内容:

$('#dropDownElement').change(function(){

    if($(this).text() == "Production")
    {
       $('#passwordElement').prop('readonly',true);
       $('#userElement').prop('readonly',true);
    } 
    else
    {
       $('#passwordElement').prop('readonly',false);
       $('#userElement').prop('readonly',false);   
    }

 })

如果prop('readonly',true);不起作用,请尝试attr('disabled', 'disabled');