以下是我用于切换的代码。
function toggle_visibility(id) {
var e = document.getElementById(id);
if(e.style.display == 'block')
e.style.display = 'none';
else
e.style.display = 'block';
}
它在我的电脑上运行良好。但是当我在调用 .asp 页面的服务器端使用它时,它就不起作用了。我知道我必须使用 .live() 处理程序。我用jquery slidetoggle试过了。但它不工作。以下是html代码
<div class="issue_button">
<a align="center" href="#" onclick="toggle_visibility('dropdown1');">Link</a></div>
<div id="dropdown1"> <p>Some text</p> </div>
难道我做错了什么?坦率地说,我不知道如何使用实时处理程序编写代码。