JSP 不匹配的属性值(||汽车|[首字母|继承|unset| revert])

rxztt3cl  于 2023-11-14  发布在  其他
关注(0)|答案(3)|浏览(142)

我在我的项目中得到错误,但我找不到为什么得到错误:
不匹配的属性值(||汽车|[首字母|继承|unset| revert])less.(F1)
此检查检测非法属性的值。
不匹配的属性值([[|] && [border-box| content-box]?]|可用|-moz-available|最小含量|-moz-min-content|最大容量|-moz-max-content|适合度|-moz-fit-content|汽车|[首字母|继承|unset| revert])less.(F1)
此检查检测非法属性的值。
x1c 0d1x的数据
哪里出错了?我想我的代码没有问题。
我的dode在下面:

<%@ page language="java"  pageEncoding="UTF-8"%>

<html>
<head>
<meta http-equiv="Content-Language" content="zh-cn">
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<LINK href="${pageContext.request.contextPath}/css/buttonstyle.css" type="text/css" rel="stylesheet">
<LINK href="${pageContext.request.contextPath}/css/MainPage.css" type="text/css" rel="stylesheet">
<script type='text/javascript' src='${pageContext.request.contextPath}/script/pub.js'></script>
<script type="text/javascript" src='${pageContext.request.contextPath}/script/validate.js'></script>
<SCRIPT type="text/javascript">
function ini(){
   document.all.name.focus();
}
function check(){
    var theForm = document.forms[0];
    if(Trim(theForm.name.value)==""){
            alert("type in the username");
            theForm.name.focus();
            return false;
        }
    theForm.submit();
    return true; 
}
function checkNumberImage(){
    var imageNumber = document.getElementById("imageNumber");
    imageNumber.src = "${pageContext.request.contextPath}/image.jsp?timestamp="+new Date().getTime();
}
function checkFunction(){
    return check();
}
</SCRIPT>
<STYLE type=text/css>
BODY { margin: 0px; }
FORM {
    MARGIN: 0px; BACKGROUND-COLOR: #ffffff
} 
</STYLE>
<title>elec title</title>
</head>
<body onload="ini()">
<form action="${pageContext.request.contextPath}/menu/home.jsp" method="post" target="_top">
<table border="0" width="100%" id="table1" height="532" cellspacing="0" cellpadding="0" >
    <tr>
        <td> </td>
    </tr>
    <tr>
        <td height="467">
        <table border="0" width="1024" id="table2" height="415" cellspacing="0" cellpadding="0" >
        <br><br><br><br><br>
            <tr>
                <td width=12%></td>
                <td align=center background="${pageContext.request.contextPath}/images/index.jpg">
                <table border="0" width="98%" id="table3" height="412" cellspacing="0" cellpadding="0">
                    <tr height=122>
                        <td colspan=2></td>
                    </tr>
                    <tr>
                        <td height="313" width="73%"></td>
                        <td height="99" width="27%">
                            <table border="0" width="70%" id="table4">
                                <tr>
                                    <td width="100"><img border="0" src="${pageContext.request.contextPath}/images/yonghu.jpg" width="75" height="20"></td>
                                    <td><input type="text" name="name" style="width: 125 px" size="20" value=""  maxlength="25"></td>

                                </tr>
                                <tr>
                                    <td width="100"><img border="0" src="${pageContext.request.contextPath}/images/mima.jpg" width="75" height="20"></td>
                                    <td><input type="password" name="password" style="width: 125 px" size="20" value=""  maxlength="25"></td>

                                </tr>

                                <tr>
                                    <td width="100"></td>
                                    <td width="100"><input type="button" class=btn_mouseout onmouseover="this.className='btn_mouseover'" onmouseout="this.className='btn_mouseout'" value="login" name="huifubtn" onclick="checkFunction()"></td>

                                </tr>
                            </table>
                        </td>
                    </tr>

                    </table>
                </td>
                <td width=13%></td>
            </tr>
            <tr>
              <td align="center" colspan=3>&nbsp;</td>
            </tr>
        </table>
        </td>
    </tr>
</table>
</form>
</body>
</html>

字符串

brccelvz

brccelvz1#

我看到你的代码是:

<td><input type="password" name="password" style="width: 125 px" size="20" value=""  maxlength="25"></td>

字符串
你应该注意css的值应该是连续的:125px不应该有空格。

ijxebb2r

ijxebb2r2#

我在一些启用了eslint的Vue.js组件中遇到了同样的问题

position: 'absolute';

字符串
删除撇号后工作正常

position: absolute;

bvn4nwqk

bvn4nwqk3#

您的样式属性应该始终像这样格式化,以防止这些IDE失控:

style="width:125px;"

字符串
此外,您分配了一个可能与样式值冲突的大小值。请确保它符合您分配的像素值。我不会在输入元素上使用像素作为尺寸,而是使用“em”。它在旧浏览器和新浏览器中都可以工作,不像“rem”。将“em”或文本计数与大小计数加上额外值匹配,您永远不会出错,如下所示:

<input type="text" name="name" style="width:25em;" size="20" value="" maxlength="25">

相关问题