本文介绍了getByElementId隐藏吗?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
document.getElementById(id).hide("slide", { direction: "down" }, 1000);
这是在我的JavaScript文件中.
This is in my javascript file.
我正在尝试隐藏一个ID为var'id'的div.
I'm trying to hide a div, which has the id of var 'id'.
错误控制台列出它不是功能.
The error console is listing that it isn't a function.
我不认为我会以这种方式(使用$("#" + id)
)获得正确的元素.
I don't think I'm getting the right element this way (using $("#" + id)
).
让我说我将div做成这样:<div id="2">
,而javascript函数得到2
Let's say im making the div like this: <div id="2">
, and the javascript function is getting 2
推荐答案
document.getElementById(id)
是Dom元素.而且它没有功能hide
document.getElementById(id)
is Dom element. and it has no function hide
您必须使用$('#'+id).hide
.或$(document.getElementById(id)).hide
这篇关于getByElementId隐藏吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!