문제

I am currently trying to create 300 instances of blockui

Currently this can only be done by copy and paste:

For example:

 <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?

도움이 되었습니까?
라이센스 : CC-BY-SA ~와 함께 속성
제휴하지 않습니다 StackOverflow
scroll top