我有这个代码:
<html>
<head>
<script src="http://code.jquery.com/jquery-1.8.2.js"></script>
<script src="http://code.jquery.com/ui/1.9.1/jquery-ui.js"></script>
<script>
document.URL = "www.google.com";
var t = document.getElementById("xjsd").innerHTML;
$('#r').html(t);
</script>
</head>
<body>
<div id="r">
</div>
</body>
</html>
我想从另一个网站(例如 google)读取应答器的值并将其写入我自己的页面,但它不起作用。