|
楼主 |
发表于 2018-10-14 10:07
|
显示全部楼层
老师,您好, 我按您的语句, 引用了Microsoft XML, v6.0,然后执行下来得到.responsetext是发下内容, 能否麻烦看下是什么吗? , 一旦解决, 立即上分, 谢谢
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>Access to this page has been denied.</title>
<link href="https://fonts.googleapis.com/css?family=Open+Sans:300" rel="stylesheet">
<style>
html, body {
margin: 0;
padding: 0;
font-family: 'Open Sans', sans-serif;
color: #000;
}
.container {
align-items: center;
display: flex;
flex: 1;
justify-content: space-between;
flex-direction: column;
height: 100%;
}
.container > div {
width: 100%;
display: flex;
justify-content: center;
}
.container > div > div {
display: flex;
width: 80%;
}
.customer-logo-wrapper {
padding-top: 2rem;
flex-grow: 0;
background-color: #fff;
}
.customer-logo {
border-bottom: 1px solid #000;
}
.customer-logo > img {
padding-bottom: 1rem;
max-height: 50px;
max-width: 100%;
}
.page-title-wrapper {
flex-grow: 0; /* was 2, but that pushed it too far down the page */
}
.page-title {
flex-direction: column-reverse;
}
.content-wrapper {
flex-grow: 5;
}
.content {
flex-direction: column;
}
@media (min-width: 768px) {
html, body {
height: 100%;
}
}
</style>
<script>window._pxAppId = 'PXxgCxM9By';</script>
<script async src="https://client.perimeterx.net/PXxgCxM9By/main.min.js"></script>
<script>
var captchaResponse;
var handled = false; // Ensure we don't run handleCaptcha() twice
var startTime = Date.now();
function handleCaptchaOnce() {
if (! handled) {
handled = true;
handleCaptcha(captchaResponse); // handler injected by PerimeterX
}
}
function trackCaptchaSolvedAndPuntToPerimeterX(response) {
captchaResponse = response;
var captchaSolutionInSeconds = Math.floor((Date.now() - startTime)/1000);
var xhr = new XMLHttpRequest();
xhr.open("GET", "/_sa_track/captcha/solved?px_uuid=9586cf50-cf55-11e8-ba0f-41df58541ab8&time_to_solution=" + captchaSolutionInSeconds);
xhr.addEventListener("load", handleCaptchaOnce);
xhr.send();
setTimeout(750, handleCaptchaOnce);
}
</script>
<script src = "https://www.google.com/recaptcha/api.js"></script><script type="text/javascript">window.px_vid = ""; function handleCaptcha(response){ var vid=""; var uuid="9586cf50-cf55-11e8-ba0f-41df58541ab8"; var name="_pxCaptcha "; var expiryUtc=new Date(Date.now()+1000*10).toUTCString(); var cookieParts = [name,"=",btoa(JSON.stringify({r: response, v: vid, u: uuid})),"; expires=",expiryUtc,"; path=/"]; document.cookie=cookieParts.join(""); location.reload(); }</script></head>
<body>
<section class="container">
<div class="customer-logo-wrapper" style="visibility: hidden">
<div class="customer-logo">
<imgXXX src="" alt="Logo"/>
</div>
</div>
<div class="page-title-wrapper">
<div class="page-title">
<h1>Please click “I am not a robot” to continue</h1>
</div>
</div>
<div class="content-wrapper">
<div class="content">
<div class="g-recaptcha" data-theme="dark"
data-sitekey="6Lcj-R8TAAAAABs3FrRPuQhLMbp5QrHsHufzLf7b"
data-callback="trackCaptchaSolvedAndPuntToPerimeterX"
></div>
<p></p>
<p>
To ensure this doesn’t happen in the future, please enable Javascript and cookies in your browser.<br/>
Is this happening to you frequently? Please <a href="https://seekingalpha.userecho.com?source=captcha">report it on our feedback forum</a>.
</p>
</div>
</div>
<img src="/_sa_track/captcha/shown?px_uuid=9586cf50-cf55-11e8-ba0f-41df58541ab8" width="1" height="1" />
</section>
</body>
</html> |
|