在我的表单中包含textarea,其中包含CSS内容(用户指定)。在提交表单之前,我必须验证textarea
的内容是否为CSS。如何验证textarea
内容?
我已经尝试过此代码,但不能正常工作,
var code = // fetch the text area content here
if (code.match(/(([ trn]*)([a-zA-Z-]*)([.#]{1,1})([a-zA-Z-]*)([ trn]*)+)([{]{1,1})((([ trn]*)([a-zA-Z-]*)([:]{1,1})((([ trn]*)([a-zA-Z-0-9#]*))+)[;]{1})*)([ trn]*)([}]{1,1})([ trn]*)/)) {
alert("This is css content");
}
else
alert("error");