替换DIV内容Javascript,无法获得正确的外部文件名

时间:2011-07-24 13:48:00

标签: javascript ajax html filenames getelementbyid

我在互联网上找到了这个代码并且它似乎正在工作,但不管我说什么,将加载到DIV的文件总是得到“找不到对象”的相同消息我究竟要做什么要加载文件?

这是HTML代码......

<a href="javascript:void()" onclick="javascript:sendRequest('sourcepage?id=34', 'targetdiv')">Link Text</a>
<div id="targetdiv">This is the target</div>

所以...我要为“sourcepage?id = 34”命名该文件以使其正确?到目前为止,我已经尝试了“id34.html”“sourcepage-34.html”和类似的东西,但似乎都没有。

剧本:

function createRequestObject() 
{
    var returnObj = false;

    if(window.XMLHttpRequest) {
        returnObj = new XMLHttpRequest();
    } else if(window.ActiveXObject) {
        try {
            returnObj = new ActiveXObject("Msxml2.XMLHTTP");

            } catch (e) {
            try {
            returnObj = new ActiveXObject("Microsoft.XMLHTTP");
            }
            catch (e) {}
            }

    }
    return returnObj;
}

var http = createRequestObject();
var target;

// This is the function to call, give it the script file you want to run and
// the div you want it to output to.

function sendRequest(scriptFile, targetElement)
{   
    target = targetElement;
    try{
    http.open('get', scriptFile, true);
    }
    catch (e){
    document.getElementById(target).innerHTML = e;
    return;
    }
    http.onreadystatechange = handleResponse;
    http.send();    
}

function handleResponse()
{   
    if(http.readyState == 4) {      
    try{
        var strResponse = http.responseText;
        document.getElementById(target).innerHTML = strResponse;
        } catch (e){
        document.getElementById(target).innerHTML = e;
        }   
    }
}

我认为这是我生命中最愚蠢的问题...对不起,并提前感谢:D

1 个答案:

答案 0 :(得分:0)

您尝试使用的文件名没有扩展名。根据其他服务器的配置,可以将其重新路由到多种不同的文件类型。 “?id = 34”是url参数,与文件名无关。只需替换文件名:

<a href="javascript:void()" onclick="javascript:sendRequest('myFile.html', 'targetdiv')">Link Text</a>
<div id="targetdiv">This is the target</div>

将文件命名为myFile.html,并将其放在与上述HTML相同的文件夹中。如果使用jQuery是你的选择,我推荐它,你可以用你想做的事情:

$('#targetdiv').load('myFile.html', function(){
    // code to execute once the HTML is loaded into your div
});