我使用$.get()
$.get('filename.svg', function (response) {
console.log(response);
return response;
});
当我记录响应时,我看到类似这样的内容
#document
<svg ...>
<g>....</g>
</svg>
我想问一下如何访问 #document ?属性。并在不<svg></svg>
#document
代码
明确我需要的东西。
我需要使用getBBox()
答案 0 :(得分:1)
您可以使用$.ajax()
并提供dataType
为text
$(function(){
$.ajax({
url: 'filename.svg',
dataType: 'text'
}).then(function (response) {
console.log(response);
});
});