<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<style type="text/css">
div.main1{
background-color:#EEE;
border: 2px dotted;
padding: 5px;
}
div.sub{
background-color:#DDD;
border: 1px dashed;
padding: 3px;
width:50%;
}
</style>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
</head>
<body>
<script type="text/javascript">
function showOptions(box){
box.childNodes[0].style.visibilty = "visible";
box.childNodes[1].style.visibilty = "visible";
}
function hideOptions(box){
box.childNodes[0].style.visibilty = "hidden";
box.childNodes[1].style.visibilty = "hidden";
}
</script>
<center>
<div class="main1">
<div class="sub" onmouseover="showOptions(this);" onmouseout="hideOptions(this);"><input />
</div>
</center>
</body>
</html>
以上是我正在使用的代码示例,我正在使用 Dreamweaver ...我担心的是,当我在 showOptions(box) 方法中的“box”之后按 Ctrl + Space 时,我看不到任何 DOM 对象选项,如果我没有任何意义,我深表歉意,因为我对 HTML + Javascript 很陌生,基本上我想做的是检查给定参数是否为 HTML 元素的函数,如果是,允许我访问它的方法,例如作为“childNodes”或“setAttribute()”等等..
这可能吗?