其他分享
首页 > 其他分享> > 【前端实习】

【前端实习】

作者:互联网

1.注释 <!-- html -->、/* css */、// js

2.需要给HTML里特定不一样的元素加css,可以用style=“”

3.input标签的聚焦和离焦(点到输入框里value值消失)待解决:type=password时的问题

<input id="tel" onfocus="focusTel()" onblur="checkTel()" class="form1" type="text" value="  请输入手机号">
<label id="check" class="arealabel flex align-center">
                            <input type="checkbox" name="areaInputConts" id="areaInput0" value="9">我已阅读并同意协议及隐私条款
                        </label>
function focusTel() {
        document.getElementById("tel").value = "";
    }

    function checkTel() {
        if (document.getElementById("tel").value == "") {
            document.getElementById("tel").value = "  请输入手机号"
            return false;
        }
        return true;
    }

4. 使被覆盖的层级模糊化: backdrop-filter: blur(5px);

5.

标签:function,tel,前端,value,getElementById,实习,document,css
来源: https://blog.csdn.net/qq_45999531/article/details/122573990