本文介绍了DOM的问题的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我想在变量中保存图像的对象。

我正在使用Internet Explorer进行此操作,使用以下行没有问题:

oImage = node.childNodes(0).all [" pic"]


现在我想使用W3C标准,并认为我可以在这里使用它来获取我的对象:

oImage = node.childNodes(0).getElementById(" pic")

节点变量来自xsl文件:

。 ...

< div onclick =" window.event.cancelBubble = true; clickOnNode(this);"

....


我不明白!我尝试了很多变化并在网上搜索但我没有找到任何东西。

感谢您对此主题的每一点提示!问候,

Tim。

I want to save an object of an image in a variable.
I am doing this with the internet explorer with no problems using the following line:
oImage = node.childNodes(0).all["pic"]

Now I wanted to use the W3C-standard and thought I could get my object using this here:
oImage = node.childNodes(0).getElementById("pic")

The node variable is from an xsl file:
....
<div onclick="window.event.cancelBubble = true; clickOnNode(this);"
....

I don′t get it! I′ve tried a lot of variations and searched the net but I didn′t find anything.
Thanks for every little hint on this topic! Greetings,
Tim.

推荐答案




使用

node.ownerDocument.getElementById(" pic")

-


Martin Honnen




Use
node.ownerDocument.getElementById("pic")
--

Martin Honnen
http://JavaScript.FAQTs.com/




使用
node.ownerDocument.getElementById(" pic")
-

Martin Honnen




这篇关于DOM的问题的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!

11-01 08:15