var xhr = new XMLHttpRequest()
xhr.open('GET', window.location.href, false)
xhr.send()
sourceCodeTxt= xhr.responseText
js文件中:function getHtml(id)
{
var obj=document.all(id)
return obj.innerHTML
}
在调用的页面head头部增加<script src="js.js" type="text/javascript"></script>
然后在页面需要的地方调用函数 getHtml 就可以了