如何在-context 中获取被点击的元素?

发布于 2024-12-11 08:12:37 字数 864 浏览 0 评论 0原文

FB 似乎已经消除了在上下文中获取单击元素(即此元素)的可能性。

即:

<a onclick="doSomething(this);">test</a>
<script>
function doSomething(this) {
   console.log(this);
}
<script>

将在 Firebug 中给出以下内容:

Object { PRIV_obj=a, appendChild=function(), insertBefore=function(), more...}

<fb:visible-to-connection>
    <a onclick="doSomething(this);">test</a>
<fb:else>
</fb:else>
    <a onclick="doSomething(this);">test</a>
</fb:visible-to-connection>

<script type="text/javascript">
function doSomething(element) {
   console.log(element);
}
</script>

将给出:

null

这是 FBJS 中的临时错误还是由于某些新功能造成的? 我如何在第二个例子中找到“this”?

It seems FB have removed the possibility to get the the clicked element (i.e. this) in the context of <fb:visible-to-connection>.

I.e:

<a onclick="doSomething(this);">test</a>
<script>
function doSomething(this) {
   console.log(this);
}
<script>

Will give the following in Firebug:

Object { PRIV_obj=a, appendChild=function(), insertBefore=function(), more...}

Whereas

<fb:visible-to-connection>
    <a onclick="doSomething(this);">test</a>
<fb:else>
</fb:else>
    <a onclick="doSomething(this);">test</a>
</fb:visible-to-connection>

<script type="text/javascript">
function doSomething(element) {
   console.log(element);
}
</script>

Will give:

null

Is this a temporary bug in FBJS or due to some new feature?
How do I get hold of "this" in the second example?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月亮邮递员 2024-12-18 08:12:37

这是出于安全原因而更改的,您无法再访问 FMBL 元素内的 HTML 元素 - 最初的错误报告(作为“设计”而关闭)是关于使用 getElementById 但我相信这是相同的原因

This was changed for security reasons, you can't access HTML elements inside FMBL elements any more - the initial bug report (which was closed as a 'by design') was about using getElementById but I believe this is the same cause

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文