ajax不断返回我的主网页而不是输出中的单词

时间:2016-01-27 19:34:24

标签: javascript ajax

我的ajax调用有问题,我一直在这里搜索,无法找到答案。 这里发生了什么事情,脚本工作得很好,然后当我登录再次使用它时,它只显示我的主索引页面,任何时候我把http://放在文本区域里面就是代码。

    function is_valid_url() 

var ajaxRequest;
    try{
        // Opera 8.0+, Firefox, Safari
        ajaxRequest = new XMLHttpRequest();
    } catch (e){
        // Internet Explorer Browsers
        try{
            ajaxRequest = new ActiveXObject("Msxml2.XMLHTTP");
        } catch (e) {
            try{
                ajaxRequest = new ActiveXObject("Microsoft.XMLHTTP");
            } catch (e){
                // Something went wrong
                alert("Your browser broke!");
                return false;
            }
        }
    }
    // Create a function that will receive data sent from the server
    ajaxRequest.onreadystatechange = function(){
        if(ajaxRequest.readyState == 4){
            var ajaxDisplay = document.getElementById('output');
            ajaxDisplay.innerHTML = ajaxRequest.responseText;

        }

    }

    var text = document.getElementById("text").value;


    var queryString = "?text=" + text;
    ajaxRequest.open("GET", "textscraper.php" + queryString, true);
    ajaxRequest.send(null); 

  }

这是html

<textarea id="text" onkeyup="is_valid_url()" placeholder="What do you think?" class="posttext">
</textarea>

感谢任何帮助。

0 个答案:

没有答案