嗨,我在这里遇到问题这是我的代码,当我编写“http://localhost”并检索内容时它可以工作,但是当我编写其他网站(如“http://www.google.com”)时它不起作用。我已经在我的虚拟主机中上传了代码供你们测试。链接在这里。http://faceproishere.netii.net/test.php 在这里你可以看到我的代码:
<!DOCTYPE HTML>
<html>
<head>
<meta charset="utf-8">
<title>Untitled Document</title>
<script src="//ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js" type="text/javascript"></script>
</head>
<body>
<input type="text" name="field1" id="field1" value="http://localhost">
<input value="load" type="button" onClick="my_function()">
<textarea cols="15" rows="12" id="frame1" style="float:left"></textarea>
<div id="frame2" style="width:400px;height:400px;overflow:scroll;fl oat:left"></div>
<script type="text/javascript">
function my_function()
{
if($("#field1").val() != '' && $("#field1").val().indexOf("http",0) == 0)
{
$.get($("#field1").val(),function(data)
{
$("#frame1").html(data)
$("#frame2").html(data)
})
}
}
</script>
</body>
</html>
提前Tnx。