我有一个LotusScript代理,其末尾具有以下代码

Set nam = session.Createname(respParty)
Print "Content-type: text/plain"
Print nam.Abbreviated


我有一个JavaScript按钮,在Submit()之前包含以下内容

    var noEmployees = document.getElementById('NoEmployees').value;
    var stateName = document.getElementById('State').value;
    var url = 'http://' + window.location.host + '/ebsprospects.nsf/GetResponsiblePerson?OpenAgent&NoEmployees=' + noEmployees + '&State=' + stateName;
    var xhttp = new XMLHttpRequest();
    xhttp.open("GET", url);

    xhttp.onreadystatechange = function() {
    if (this.readyState == 4 && this.status == 200) {
        }
    };
    alert (xhttp.responseText);
    document.getElementById("ResponsibleParty").innerHTML = xhttp.responseText;


一切工作正常,除了恢复空白值。

如果我输入网址:


  http://[webaddress]/[dbname].nsf/GetResponsiblePerson?OpenAgent&NoEmployees=20&State=IL


完全像我将其传递给JS代码一样,将其返回到浏览器中:

    X Content-type: text/plain Susanne Anderson/CBS


我究竟做错了什么?

我的JS代码顺序错误吗?

最佳答案

 var noEmployees = document.getElementById('NoEmployees').value;
    var stateName = document.getElementById('State').value;
    var url = 'http://' + window.location.host + '/ebsprospects.nsf/GetResponsiblePerson?OpenAgent&NoEmployees=' + noEmployees + '&State=' + stateName;
    var xhttp = new XMLHttpRequest();
    xhttp.open("GET", url);

    xhttp.onreadystatechange = function() {
    if (this.readyState == 4 && this.status == 200) {
         alert (xhttp.responseText);
         document.getElementById("ResponsibleParty").innerHTML = xhttp.responseText;
        }
    };
    xhttp.send();


希望这会有所帮助。

07-24 17:31