<!--svg code-->
<rect xmlns="http://www.w3.org/2000/svg" x="129" y="217" width="156" height="120" class="st0"/>
var svg = embed.getSVGDocument().getElementsByTagName('svg')[0];
var rect = svg.getElementsByTagName('rect');
touch.on(rect[0], 'tap', function (ev) { // 绑定未生效, tap 换成 click 是有效的
console.log(ev)
})