如何让materializecss复选框与@ Html.CheckBoxFor一起使用? [英] How to get materializecss checkbox to work with @Html.CheckBoxFor?

查看:150
本文介绍了如何让materializecss复选框与@ Html.CheckBoxFor一起使用?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

所以我遇到了一个问题,试图用@ Html.CheckBoxFor实现materializecss'复选框。如果我完全输入:

So I'm having an issue trying to implement materializecss' checkbox with @Html.CheckBoxFor. If I input exactly:

<input type="checkbox" id="test5" />
<label for="test5">Red</label>

有效。但是,如果我尝试这样做:

it works. But if I try this:

@Html.LabelFor(m => m.RememberMe, new { @class = "login-label" })
@Html.CheckBoxFor(m => m.RememberMe, new { @type = "checkbox" })

该复选框从页面左侧消失(复选框的样式左侧设置为-99999)。

the checkbox disappears way off the page to the left (the style of the checkbox gets its left set to -99999).

有没有其他方法可以实现CheckBoxFor,这将使物化合作?

Is there any other way I can implement CheckBoxFor that would make materialize cooperate?

推荐答案

我有同样的问题和顺序ChecBoxFor和LabelFor就像peter.edwards建议的那样。对于我来说,问题是由@ Html.CheckBoxFor生成的隐藏元素引起的:

I Was having same problem and the order of ChecBoxFor and LabelFor were like peter.edwards suggest. For me the problem was caused by a hidden element generated by @Html.CheckBoxFor:

<input checked="checked" class="check-box" data-val="true" id="IsActive" name="IsActive" type="checkbox" value="true">
<input name="IsActive" type="hidden" value="false">
<label for="IsActive">IsActive</label>

我为解决问题所做的是将隐藏元素移动到父元素的底部:

What I did to solve the problem was, move the hidden element to the bottom of the parent element:

 $("input[type='hidden']").each(function (index, element) { 
        $(this).appendTo($(element).parent());
    });

这篇关于如何让materializecss复选框与@ Html.CheckBoxFor一起使用?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆