我试图将以下javascript代码注入iframe
元素,但我不明白我是如何实现这一目标的。因为代码是用ES6编写的,所以我无法通过其他方式将代码放入iframe
元素中。
我知道我可以通过这种方式将javascript添加到iframe中,
var scriptTag = "<script>alert(1)</script>";
$("iframe").contents().find("body").append(scriptTag);
但我不明白我如何使用下面的代码来做到这一点。
import finder from '@medv/finder'
document.addEventListener('mouseover', event => {
const selector = finder(event.target)
console.log(selector)
}, true)
任何帮助都会非常感激:)