如何将 Onclick 事件处理程序附加到所有 SVG 路径元素?我已将我的 SVG 加载到 iframe 中。我尝试使用以下内容,但单击事件未触发。
jQuery(function ($) {
debugger;
$('path').click(function () {
alert("Hello");
});
});
<iframe id="frame" src="myFile.svg" border="0" width="100%" height="450px"></iframe>