我想通过使用按钮名称在 div 中的许多按钮中隐藏一个按钮。那可能吗?
我试过
$("#showButtons").hide('input[name:buttonName]');
但它会删除该 div 中的所有按钮。
改变
$("#showButtons").hide('input[name:buttonName]');
到
$("#showButtons input[name='buttonName']").hide();
如果输入在里面#showButtons
您是否在寻找:
$("input[name=buttonName]").hide();
或者隐藏showButtons
div 中的按钮:
$("#showButtons input[name=buttonName]").hide();
您将使用 jquery hide 功能给出按钮的类名
<script type="javascript">
$('.button1').hide();
</script>
您可以使用
$("input[name='myButton']").hide();
或者
$("input[name='myButton']").css({
'display' : 'none'
});