我有一个愚蠢的问题。 jQuery.ajax
请求会将完整HTML文本作为字符串返回给我。我在服务器上出现错误时收到此类响应。服务器给我一个错误描述,我想把它放在当前页面的相应位置。
现在问题是:我有一个包含完整HTML文档的字符串(不是XML !!!请参阅里面的<hr>
元素)。我需要只有BODY部分作为jQuery对象。然后我可以将它附加到我页面的相应部分。
以下是我需要解析的字符串示例:
<html>
<head>
<title>The resource cannot be found.</title>
<style>
body {font-family:"Verdana";font-weight:normal;font-size: .7em;color:black;}
p {font-family:"Verdana";font-weight:normal;color:black;margin-top: -5px}
// ...
</style>
</head>
<body bgcolor="white">
<span><H1>Server Error in '/' Application.<hr width=100% size=1 color=silver></H1>
<h2> <i>The resource cannot be found.</i> </h2></span>
<font face="Arial, Helvetica, Geneva, SunSans-Regular, sans-serif ">
<b> Description: </b>HTTP 404. The resource you are looking for ...bla bla....
<br><br>
<b> Requested URL: </b>/ImportBPImagesInfos/Repository.svc/GetFullProfilimageSw<br><br>
<hr width=100% size=1 color=silver>
<b>Version Information:</b> Microsoft .NET Framework Version:4.0.30319; ASP.NET Version:4.0.30319.1
</font>
</body>
</html>
<!--
[HttpException]: A public action method '....
at System.Web.Mvc.Controller.HandleUnknownAction(String actionName)
at System.Web.Mvc.Controller.ExecuteCore()
at System.Web.Mvc.ControllerBase.Execute(RequestContext requestContext)
at System.Web.Mvc.ControllerBase.System.Web.Mvc.IController.Execute(RequestContext requestContext)
at System.Web.Mvc.MvcHandler.<>c__DisplayClass8.<BeginProcessRequest>b__4()
at System.Web.Mvc.Async.AsyncResultWrapper.<>c__DisplayClass1.<MakeVoidDelegate>b__0()
at System.Web.Mvc.Async.AsyncResultWrapper.<>c__DisplayClass8`1.<BeginSynchronous>b__7(IAsyncResult _)
at System.Web.Mvc.Async.AsyncResultWrapper.WrappedAsyncResult`1.End()
at System.Web.Mvc.Async.AsyncResultWrapper.End[TResult](IAsyncResult asyncResult, Object tag)
at System.Web.Mvc.Async.AsyncResultWrapper.End(IAsyncResult asyncResult, Object tag)
at System.Web.Mvc.MvcHandler.EndProcessRequest(IAsyncResult asyncResult)
at System.Web.Mvc.MvcHandler.System.Web.IHttpAsyncHandler.EndProcessRequest(IAsyncResult result)
at System.Web.HttpApplication.CallHandlerExecutionStep.System.Web.HttpApplication.IExecutionStep.Execute()
at System.Web.HttpApplication.ExecuteStep(IExecutionStep step, Boolean& completedSynchronously)
-->
答案 0 :(得分:16)
必备的非jQuery答案:
var bodyHtml = /<body.*?>([\s\S]*)<\/body>/.exec(entirePageHTML)[1];
这将仅返回body标签内的内容。
UPDATE ,它接受在body标记
上设置的属性答案 1 :(得分:4)
另一种方法,没有jQuery:
function getStupidErrorMessage(str) {
var bodyTags = str.match(/<\/*body[^>]*>/gim);
// returns an array
// bodyTags[0] is body open, bodyTags[1] is body close
// unless someone output the markup backwards :)
bodyContents = str.slice(bodyTags[0].length,-(bodyTags[1].length));
return bodyContents; // use as innerHTML of <body>
}
如果您需要BODY标记的属性,也可以解析它们。
答案 2 :(得分:0)
如果出现错误,您可以将整个HTML字符串传递给jQuery以构建它的内部表示:
var bodyHtml = $(entirePageHTML).find('body').html();
或
var errorMessage = $(entirePageHTML).find('body h1').text();