Block UI Jquery plugin for a specific DIV
问题 Anyone knows a JQuery plugin for BlockUI that allows blocking a specific DIV, not just the whole page. Thanks. 回答1: You can do it thru blockui plugin 回答2: You can do this natively with BlockUI: http://jquery.malsup.com/block/#element $('div.test').block({ message: null }) 回答3: $.blockUI({ message: $("#divid"), css: { position: 'absolute', } }); 来源: https://stackoverflow.com/questions/6933086/block-ui-jquery-plugin-for-a-specific-div