我们在我们的应用程序中使用 struts 1.3。我们有如下要求 -
我们在登录页面中有按钮。现在,
- 如果可以从用户 PC 访问 url,则显示该按钮。
- 否则不显示。
为了检查 URL 可访问性,我使用了 XMLHttpRequest.responseText。下面是我的代码:
<html>
<head>
<title>Test html page</title>
<script type="text/javascript">
function checkURL()
{
var xmlHttp = null;
var theUrl = "http://www.googlewetuyyu.co.in";
xmlHttp = new XMLHttpRequest();
xmlHttp.open( "GET", theUrl, false );
alert(xmlHttp.responseText);
}
</script>
</head>
<body onload="checkURL();">
<b>Hello World!</b>
</body>
</html>
但是我仍然没有在警报框中得到任何信息。
【我稍微修改了一下】
它实际上在 IE 中工作。但不能在铬中工作。请提出解决方案。
谢谢,卡蒂克