我打算点击id为md_outputlist_edit_slave,隐藏按钮id为undo
$("#md_outputlist_edit_slave").click(function(){
document.getElementById('undo').style.display="none";
});
没有效果
------解决方案--------------------
你应该在页面$(document).ready中加载这条语句吧
$("#md_outputlist_edit_slave").click(function(){
document.getElementById('undo').style.display="none";
});