safari ReferenceError:找不到变量

发布于 2024-10-06 07:44:27 字数 470 浏览 5 评论 0原文

我在自己的 DIV 中有以下内容

<script>
function newfunc()
{
alert("here");
}
</script>
<button type="button" onclick="newfunc()">Press me</button>

在 IE 和 FF 上工作正常,但在 Safari(至少 Safari 4.0.5)上它显示“ReferenceError 无法找到变量” - 现在内容已动态加载到 DIV 中,看起来Safari 无法看到此 DIV 中的函数定义 - 但是,如果我将函数 newfunc() 放到 HTML 主页面上(即不在 DIV 中),那么按下按钮就会调用该函数。

就好像 Safari 没有看到已添加到 DIV 中的 Javascript 函数一样。

任何帮助将不胜感激。

亚当

I have the following in its own DIV

<script>
function newfunc()
{
alert("here");
}
</script>
<button type="button" onclick="newfunc()">Press me</button>

On IE and FF it works fine, but on Safari (at least Safari 4.0.5) it says “ReferenceError can't find variable” - now the content was loaded into the DIV dynamically and it seems Safari can't see the function definitions within this DIV - however, if I put the function newfunc() onto the main HTML page (i.e. not in the DIV) then the button press does call the function.

It’s as if Safari doesn't see the Javascript functions that have been added to the DIV.

Any help would be appreciated.

adam

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

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

发布评论

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

评论(1

不奢求什么 2024-10-13 07:44:27

动态添加到页面的 JavaScript 需要进行 eval-d 才能正确初始化。

为了使函数定义能够正确工作,它们的格式需要略有不同。例如:

<script>
newfunc = function()
{
alert("here");
}
</script>
<button type="button" onclick="newfunc()">Press me</button>

将内容添加到 DIV 后,从 DIV 中提取所有标签元素并评估其内容。

例如,使用 PrototypeJS (http://www.prototypejs.org/api/):

$(divid).innerHTML.evalScripts();

其中 divid 是您刚刚填充内容的 div 的 ID。

Javascript that is added dynamically to a page needs to be eval-d in order to correctly initialise.

In order for that to work correctly for function definitions they need to be formatted slightly differently. eg:

<script>
newfunc = function()
{
alert("here");
}
</script>
<button type="button" onclick="newfunc()">Press me</button>

After adding the content to the DIV, extract all tag elements from the DIV and eval their contents.

For example, using PrototypeJS (http://www.prototypejs.org/api/):

$(divid).innerHTML.evalScripts();

Where divid is the ID of the div you just populated with content.

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