尝试将 html 转换为 xhtml,但是当我将大于号更改为>
if 语句时不再起作用。同样的故事&
和<
标志。Cdata 也不起作用。
function length(elem){
var input = elem.value;
if(input.length > 8){
return true;
}
else{
alert("Please enter equal to or more than 8 characters for username");
return false;
}
}