我如何判断“我的页面上是否存在 Javascript 对象”?
我无法让条件在此函数中工作,有什么帮助吗?
function headupdate(id, name, heading)
{
var order;
if (document.getElementById(heading).value === undefined)
{
order = 1;
}
else
{
order = document.getElementById(heading).value;
}
alert(order);
$.post('headingupdate.php', {id: id, name: name, value: heading, order: order},
function(response)
{
$('#resume').html(response)
}
)
};
I can't get the the conditional to work in this function, any help?
function headupdate(id, name, heading)
{
var order;
if (document.getElementById(heading).value === undefined)
{
order = 1;
}
else
{
order = document.getElementById(heading).value;
}
alert(order);
$.post('headingupdate.php', {id: id, name: name, value: heading, order: order},
function(response)
{
$('#resume').html(response)
}
)
};
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该检查如下。
You should check as following.
为了响应您的帖子标题,我使用
typeof()
来查找 DOM 中是否存在元素:此外,
typeof()
返回一个字符串,因此需要将其在条件语句的引号中In response to your post title, I use
typeof()
to find if an element exists in the DOM:Also,
typeof()
returns a string, so it needs to be in quotes for a conditional statement