我想使用按钮名称隐藏div中许多按钮中的单个按钮。这可能吗?
我试过了
$("#showButtons").hide('input[name:buttonName]');
但它会删除该div中的所有按钮。
答案 0 :(得分:5)
更改
$("#showButtons").hide('input[name:buttonName]');
到
$("#showButtons input[name='buttonName']").hide();
如果输入在#showButtons
答案 1 :(得分:2)
您在寻找:
$("input[name=buttonName]").hide();
或者隐藏showButtons
div中的按钮:
$("#showButtons input[name=buttonName]").hide();
答案 2 :(得分:0)
您将使用jquery hide function
给出按钮的类名<script type="javascript">
$('.button1').hide();
</script>
答案 3 :(得分:0)
您可以使用
$("input[name='myButton']").hide();
或强>
$("input[name='myButton']").css({
'display' : 'none'
});
答案 4 :(得分:0)