检查html中是否定义了一个对象
在 HTML 中,我有一个对象标签,如下所示:
<OBJECT ID="objectid" CLASSID="some-class-id" CODEBASE="some-codebase">
我用 JavaScript 编写了一个函数来访问该对象。
我按如下方式检查了空值:
if(objectid==null){-----}
我想检查对象是否未定义或为空。我们有什么函数可以检查吗?
In HTML, I have an object tag as follows:
<OBJECT ID="objectid" CLASSID="some-class-id" CODEBASE="some-codebase">
I have written a function in JavaScript to access this object.
I checked the null value as follows:
if(objectid==null){-----}
i want to check if the object is undefined or is empty. Do we have any functions to check so?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要检查变量是否包含值并且存在,请使用:
if (variable) {}
例如,要检查您是否已获取
objectid
DOM 元素:if (document.getElementById("objectid")) {}
To check if a variable contains a value and exists, use:
if (variable) {}
For example, to check that you have obtained the
objectid
DOM element:if (document.getElementById("objectid")) {}