如何检查元素是否包含图像?
如何检查元素是否包含图像。我不能做这样的事情吗
if(document.getElementById("image").src == myImage.src)
How do I check to see if an element contains an image. Can't I do something like this
if(document.getElementById("image").src == myImage.src)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
如果您的浏览器支持,您可以使用
element.querySelector()
If your browser supports it, you can use
element.querySelector()
您是否正在尝试检查 id 为“image”的
img
标签的src
属性是否等于不同的img
标签?如果是这样,请尝试以下操作如果您只想查看它是否具有
src
属性,那么您可以执行以下操作Are you trying to check if an
img
tag with the id "image" has asrc
attribute equal to a differentimg
tag? If so try the followingIf you just want to see if it has an
src
attribute at all then you can do the following