从jQuery.get()或jQuery.ajax()访问响应

时间:2017-12-15 12:10:51

标签: javascript jquery

我使用$.get()

从文件中获得回复
$.get('filename.svg', function (response) {
    console.log(response);

    return response;
});

当我记录响应时,我看到类似这样的内容

#document
    <svg ...>
        <g>....</g>
    </svg>

我想问一下如何访问 #document ?属性。并在不<svg></svg>

的情况下打印#document代码

明确我需要的东西。 我需要使用getBBox()

计算SVG大小

1 个答案:

答案 0 :(得分:1)

您可以使用$.ajax()并提供dataTypetext

$(function(){
    $.ajax({
        url: 'filename.svg',
        dataType: 'text'
    }).then(function (response) {
        console.log(response);
    });
});