我有以下 3 个动作,它们在单击标签时基本上检查单选按钮。有没有办法把这些写成一个函数而不是 3 个单独的函数?
$("input[name='customOrder-qty']").on('click', function() {
$('#qtyPackage-custom').prop('checked', true);
});
$("input[name='customOrder-price']").on('click', function() {
$('#qtyPackage-custom').prop('checked', true);
});
$("input[name='customOrder-name']").on('click', function() {
$('#qtyPackage-custom').prop('checked', true);
});
谢谢你