我需要显示一个 .htm 文件,它位于应用程序之外。
这是设计和代码。
<a href="javascript:;" onclick="showhtm()">
<div id="htmldiv">
</div>
<script type="text/javascript">
function showhtm() {
var sPath = window.location.pathname;
var sPage = sPath.substring(sPath.lastIndexOf('/') + 1);
var shtm = sPage.substring(0, sPage.lastIndexOf('.'));
$("#htmldiv").load("http://10.196.128.98/htms/app/files/html/" + shtm + ".htm");
}
</script>
这适用于 IE,但不适用于 Firefox。
我应该改用 iframe 吗?