<!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) メソッドで「ボックス」の後に Ctrl + スペースを押すと、DOM オブジェクトのオプションが表示されないことです。 、HTML + Javascriptにまったく慣れていないため、意味をなさない場合はお詫びします。基本的に、私がやろうとしているのは、指定された引数がHTML要素の関数にあるかどうかを確認することです。そうであれば、そのようなメソッドにアクセスできるようにします「childNodes」または「setAttribute()」などとして..
これは可能ですか?