JavaScriptまたはjQueryでsvgオブジェクトのタイプを確認するにはどうすればよいですか?タグがタイプかどうかを確認したいSVGAnimatedString
。
オブジェクトをコンソールに出力すると、次のように出力されます。
console.log(this.href);
SVGAnimatedString // is an object and can be expanded
私のコードでは、それがSVGオブジェクトであるかどうかをチェックしようとしましたが、チェックが機能しません。
if (this.href == 'SVGAnimatedString'){ //this check does not work
//it s an svg object
var url = this.href.animVal
}
else{
var url = this.href; //get the href from the <a> element
}
SVGAnimatedString
オブジェクトかどうかを正しく確認するにはどうすればよいですか?