jQuery   发布时间:2022-03-30  发布网站:大佬教程  code.js-code.com
大佬教程收集整理的这篇文章主要介绍了jquery – 将单选按钮设置为正方形大佬教程大佬觉得挺不错的,现在分享给大家,也给大家做个参考。
我得到了一个带方形单选按钮的设计.

有没有办法将单选按钮设置为这样?

唯一的方法,我认为我可以通过使用图像,并通过$.on(‘click’)方法交换已检查/检查状态.

解决方法

你不需要设置单选按钮的样式.只需使用div:

小提琴中的例子:http://jsfiddle.net/kLGf4/2/

HTML:

<section>
    <header>
         <h1>Perfered Method of Contact</h1>

    </header>
    <div> <span>Choice 1</span>

        <div class="square-radio square-radio--clicked">
             <div class="square-radio--content"></div>
        </div>
    </div>
    <div> <span>Choice 2</span>

        <div class="square-radio">
            <div class="square-radio--content"></div>
        </div>
    </div>
</section>

CSS:

.square-radio {
    border: 1px solid black;
    margin: 2px;
    width: 40px;
    height: 40px;
    position: relative;

}
.square-radio--clicked .square-radio--content{
    margin: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    BACkground-color: black;
    width: 20px;
    height: 20px;
}

JS:

$(document).ready(function () {
    $(document).on("click",".square-radio",function () {
        $(this).toggleClass("square-radio--clicked");
    });
});

大佬总结

以上是大佬教程为你收集整理的jquery – 将单选按钮设置为正方形全部内容,希望文章能够帮你解决jquery – 将单选按钮设置为正方形所遇到的程序开发问题。

如果觉得大佬教程网站内容还不错,欢迎将大佬教程推荐给程序员好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。