私はこの方法で(「jerjer」の選択された回答に従って)試しましたが、コンテンツのロードに失敗しました..
render.php
<?php
$url = 'http://apps.irs.gov/app/withholdingcalculator/index.jsp';
$htm = file_get_contents($url);
echo $htm;
?>
common.js
$(document).ready(function(){
$('#divId').load('render.php');
});
index.html
<html>
<head>
<title>Home</title>
<link rel="stylesheet" href="css/style.css" type="text/css">
<script src="js/jquery.js"></script>
<script src="js/common.js"></script>
</head>
<body>
<div id="divId"></div>
</body>
</html>
何か助けはありますか?前もって感謝します...