我正试图从下面删除“数量”这个词,我想我已经接近了,但显然有些东西是关闭的,因为它不起作用。
<div class="DetailRow" style="display: ;">
<div class="Label">
<label>Quantity</label>
和:
<script type="text/javascript">
$(document).ready(function(){
$('#text_qty_').parent().parent().remove();
$('#qty_').parent().parent().remove();
$('.QuantityInput').remove();
$('label[for="Quantity"]').css('display', 'none').remove();
});
</script>