隐藏可见div在javascript php中显示另一个div?

时间:2015-12-31 07:53:52

标签: javascript tags hide visible

我有可见的div,我想隐藏在javascript中显示另一个div的可见div。

我的js: -

`function shownote(id){
    document.getElementById(id).style.display = "block";
    document.getElementByClassName('comment').style.display = "hidden";
}`

我的代码: -

`<td>
    <?php echo $key; ?><br><input type='button' class="btn" value="Note"      onclick="shownote('comment<?php echo $unique; ?>')">
    <div class="comment" id="comment<?php echo $unique; ?>"  style="display:none;">
    <textarea id="notemenu" name="notemenu" placeholder="Note Here"></textarea>  <br>
    <input type="button" value="Submit"><a href>Cancel</a>
    </div> 
</td>`

2 个答案:

答案 0 :(得分:0)

  

DROP TABLE table_name PURGE; 不是显示的有效属性。尝试display =&#39; none&#39;。另请注意,hidden(此处也是正确的拼写错误)将返回getElementsByClassName,迭代所有节点并设置属性

nodelist

答案 1 :(得分:0)

document.getElementByClassName('comment').style.display = "none";

而不是hidden,您必须使用none