- 정보공유
[JQUERY] jQuery blockUI plugin
페이지 조회시 로딩시간이 길어질경우 처리중 메시지를 보여주는 jquery 플러그인.
[code]
<script type="text/javascript" src="jquery.blockUI.js"></script>
<script type="text/javascript">
var _UseLoading_ = true;
$(document).ready(function() {
$(window).bind("beforeunload", function() {
if (_UseLoading_) {
setTimeout(function() {
$.blockUI({
css: { padding: "10px" },
message: "<img src='/images/loading_progress.gif' width='202' height='55' alt='처리중입니다. 잠시만 기다려주세요.'>"
});
}, 1);
}
else {
_UseLoading_ = true;
}
});
$(window).bind("unload", function() {
$.unblockUI();
});
});
</script>
[/code]
[code]
<script type="text/javascript" src="jquery.blockUI.js"></script>
<script type="text/javascript">
var _UseLoading_ = true;
$(document).ready(function() {
$(window).bind("beforeunload", function() {
if (_UseLoading_) {
setTimeout(function() {
$.blockUI({
css: { padding: "10px" },
message: "<img src='/images/loading_progress.gif' width='202' height='55' alt='처리중입니다. 잠시만 기다려주세요.'>"
});
}, 1);
}
else {
_UseLoading_ = true;
}
});
$(window).bind("unload", function() {
$.unblockUI();
});
});
</script>
[/code]
첨부파일
- jquery.blockUI.js (17.0K) 1회 다운로드 | DATE : 2013-03-08 01:17:16