XML and JSON 验证_.NET_编程开发_程序员俱乐部

中国优秀的程序员网站程序员频道CXYCLUB技术地图
热搜:
更多>>
 
您所在的位置: 程序员俱乐部 > 编程开发 > .NET > XML and JSON 验证

XML and JSON 验证

 2014/5/8 16:16:54  Michael_W  博客园  我要评论(0)
  • 摘要:functionChkJson(strJson){//判断Json格式是否正确if(strJson==null||strJson=="")returntrue;try{JSON.parse(strJson);returntrue;}catch(ex){returnfalse;}}functionvalidateXML(strXml,msg){debugger;msg=msg+"\r\r错误信息:\r";////codeforIE//if(window.ActiveXObject)
  • 标签:JSON XML JS

function ChkJson(strJson) { //判断Json格式是否正确
if (strJson == null || strJson == "")
return true;

try {
JSON.parse(strJson);
return true;
}
catch (ex) {
return false;
}
}
function validateXML(strXml, msg) {
debugger;
msg = msg + "\r\r错误信息:\r";
// // code for IE
// if (window.ActiveXObject) {
// var xmlDoc = new ActiveXObject("Microsoft.XMLDOM");
// xmlDoc.async = "false";
// xmlDoc.loadXML(document.all(txt).value);

// if (xmlDoc.parseError.errorCode != 0) {
// txt = "Error Code: " + xmlDoc.parseError.errorCode + "\n";
// txt = txt + "Error Reason: " + xmlDoc.parseError.reason;
// txt = txt + "Error Line: " + xmlDoc.parseError.line;
// alert(msg + txt);
// return false;
// } else {
// //alert("没有发现错误");
// return true;
// }
// }
// code for Mozilla, Firefox, Opera, Chrome, etc.
// else
if (document.implementation.createDocument) {
var parser = new DOMParser();
//var text = txt;
var xmlDoc = parser.parseFromString(strXml, "text/xml");

if (xmlDoc.documentElement.nodeName == "parsererror") {
alert(msg + xmlDoc.documentElement.childNodes[0].nodeValue);
return false;
} else {
//alert("没有发现错误");
return true;
}
}
// // code for IE
else if (window.ActiveXObject) ){
alert('请使用Chrome浏览器');
return false;
}
else {
alert('您的浏览器无法处理XML验证');
return false;
}
}

发表评论
用户名: 匿名