如何从XMLHttpRequest响应获取<p>标记值并在html中进行设置

时间:2019-03-02 11:17:46

标签: javascript jquery html ajax string

我正在尝试使用XMLHttpRequest上传文件,如果发生错误,我会得到整个错误div作为响应。 从那个div我想在段落中输入文本,即(文件为空,请提供逗号分隔的taskids。)标签以在html页面中设置。 谈论代码中的错误代码409。

Request

var xhr = new XMLHttpRequest();       
var url = '/uiris/actions/'+$("#actionName").val()+'/do?time=' + new Date().getTime()+'&subaction=fileupdate';
xhr.open("POST",url, true);
xhr.send(formdata);
xhr.onload = function(e) {

    if (this.status == 200) {
        refreshView();
    } else {
        if (this.status === 409) {
            $('#action').html(this.responseText);  
        } else if (this.status === 401) {
            window.location = "/xyz/";
        } else if (this.status === 422) {
             alert("Unable to perfom task");
             refreshView();
        } else {
            alert("Unable to connect to application");
        }
        refreshView();
    }
}; 

响应:

    <div id="errorDiv" class="margin-top-10-px">
    <h2>Error</h2>
    <p>File is empty.Please provide comma seperated taskids.</p>
</div>

1 个答案:

答案 0 :(得分:1)

您可以简单地用jQuery对其进行jQuery验证,然后find text()进行以下操作:

$(this.responseText).find("p").text();