本文介绍了创建300个blockui实例的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我目前正在尝试创建300个blockui实例
I am currently trying to create 300 instances of blockui
当前,这只能通过复制和粘贴来完成:
Currently this can only be done by copy and paste:
例如:
<script type="text/javascript">
$(document).ready(function() {
$('#t1').click(function() {
$.blockUI({ message: $('#q1'), css: { width: '1024px' } });
});
$('#yes1').click(function() {
// update the block message
$.blockUI({ message: "<h1>Remote call in progress...</h1>" });
$.ajax({
url: 'wait.php',
cache: false,
complete: function() {
// unblock when remote call returns
$.unblockUI();
}
});
});
$('#no1').click(function() {
$.unblockUI();
return false;
});
});
</script>
<script type="text/javascript">
$(document).ready(function() {
$('#t2').click(function() {
$.blockUI({ message: $('#q2'), css: { width: '1024px' } });
});
$('#yes2').click(function() {
// update the block message
$.blockUI({ message: "<h1>Remote call in progress...</h1>" });
$.ajax({
url: 'wait.php',
cache: false,
complete: function() {
// unblock when remote call returns
$.unblockUI();
}
});
});
$('#no2').click(function() {
$.unblockUI();
return false;
});
});
</script>
有人可以建议一种更快的方法吗?
Can anyone suggest a quicker way?
推荐答案
http://php.net/manual/en/control-structures.for.php
这篇关于创建300个blockui实例的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!