jQuery blockui senaryo üzerinde bölgeyi tekrar çalışmak için başarısız

0 Cevap php

i jquery blockui senaryo üzerinde tekrar bölgesini kullanmaya çalışıyorum ama çalışmak için başarısız

Bu ben şimdi kullanıyorum kodu:

    <?php do { ?>
<script type="text/javascript"> 
    $(document).ready(function() { 

        $('#t<?php echo $row_dd31['dNo']; ?>').click(function() { 
            $.blockUI({ message: $('#q<?php echo $row_dd31['dNo']; ?>'), css: { width: '1024px' } }); 
        }); 

        $('#yes').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(); 
                } 
            }); 
        }); 

        $('#no').click(function() { 
            $.unblockUI(); 
            return false; 
        }); 

    }); 
</script> 
<?php } while ($row_dd31 = mysql_fetch_assoc($dd31)); ?>

neden çalışmıyor?

bir javascript yanında php tekrar bölgesini kullanamazsınız

kullanılacak herhangi bir alternatifi vardır değilse?

çok teşekkürler peşin ve Tanrı korusun


Bu kalıcı bir iletişim için kod

<!-- modal -->              

<?php do { ?>
<div id="q<?php echo $row_dd31['dNo']; ?>" style="display:none; cursor: default"> 
<h3>Driver <?php echo $row_dd31['dNo']; ?></h3><p>
<input type="button" id="yes" value="Save" style="width: 75px; height: 50px;"/> <input type="button" id="no" value="Exit" style="width: 75px; height: 50px;"/> 
</div> 
<?php } while ($row_dd31 = mysql_fetch_assoc($dd31)); ?>

Bu karolar oluşturulur nasıl:

<tr height="100px" align="center">        
            <?php do { ?>
            <td style="background-color: <?php echo $row_dd1['colour']; ?>;">   
              <input type="hidden" id="<?php echo $row_dd1['dNo']; ?>">
              <button type="submit" class="link" id="t<?php echo $row_dd1['dNo']; ?>"><span><?php echo $row_dd1['dNo']; ?></span></button>
            </td>
            <?php } while ($row_dd1 = mysql_fetch_assoc($dd1)); ?>
        </tr>

0 Cevap