是否有一个用于验证CSS的jquery插件?
我的意思是,我愿意让用户在文本框中输入自己的CSS并通过jquery验证是否是有效的CSS吗?
例如:
@font-face {
font-family: 'NationalRegular';
src: url('http://localced.com/national-regular-webfont.eot');
src: local('National'), local('NationalRegular'), url('http://localced.com/national-regular-webfont.woff') format('woff'), url('http://localced.com/national-regular-webfont.ttf') format('truetype'), url('http://localced.com/national-regular-webfont.svg#webfontHGfqMJAZ') format('svg');
font-weight: normal;
font-style: normal;
***notgoodCSS***:this is not good;
}
最佳答案
在您自己的服务器上使用W3C验证程序。
执行命令行并将结果返回给jquery(通过Ajax调用)。
http://jigsaw.w3.org/css-validator/DOWNLOAD.html