Home >Web Front-end >JS Tutorial >A brief analysis of the hiding and display problems of tr_javascript skills
if($('#nextTransaction1 option:selected').text()=="Return to make attachment"){
$("#ReturnrReason").css('display' ,'');
$("#ReturnrReasonNote").css('display' ,'');
}else{
$(":checkbox[name='workFlowParam.annexReturnReason']").attr("checked ",false);//Clear options
$("#ReturnRemarks").val("");
$("#ReturnrReason").css('display', 'none');
$("#ReturnrReasonNote").css('display' ,'none')
}
}