0
如何將Onclick事件處理程序附加到所有SVG路徑元素?我已經將我的SVG加載到iframe中。我試圖使用以下內容,但點擊事件不會觸發。在Iframe中加載SVG的Javascript事件
jQuery(function ($) {
debugger;
$('path').click(function() {
alert("Hello");
});
});
<iframe id="frame" src="myFile.svg" border="0" width="100%" height="450px"></iframe>