0
我使用了以下工作正常但我需要關閉按鈕,而不是自動關閉如何做到這一點?模式對話框中的關閉按鈕
$(document).ready(function() {
$('#app').click(function() {
$.blockUI({
theme: true,
title: 'Welcome to your page',
message: '<p>Please have a look..</p>',
timeout: 2000
});
});
});