ajax页面包含时url如何传参? 财富值94

2016-10-22 22:51发布

现有多个页面(test1.html、test2.html、index.html)需要包含某个页面(header.html),且这多个页面位于不同的目录,如下所示

Item/     js/         main.js     images/         ...     about/         test1.html         ...     contact/         test2.html         ...     index.html     header.html

通过ajax来实现页面包含时,请求的url改如何填写?

    //main.js     ...     xmlHttp.open("GET",url,true);     xmlHttp.send();     ...

而且被包含的页面header.html有图片资源,这个图片资源的链接又该如何写?