如何限制输入到HTML文本框中的字符数量和类型?这是我到目前为止所得到的:
< div id =“CustomColour”> 自定义颜色输入:#< input …
希望这个功能用得很好
function isHexaColor(sNum){ return (typeof sNum === "string") && sNum.length === 6 && ! isNaN( parseInt(sNum, 16) ); } isHexaColor("AA33FF") => true isHexaColor("Z34FF9") => false isHexaColor("AA33FF11") => false