2016-08-12 67 views
0

我有這個按鈕:<input type="submit" name="submit5" class="btn" value="Tarih ekle" onclick="tarih_alani_yap()" />如何使用onclick()方法通過PHP打印html代碼?

當我點擊它我想添加這個代碼之間的標籤。不管有多少點擊,如果用戶想要添加5次,它一定沒問題。

<? function tarih_alani_yap() {?> 
    <tr> 
     <td class="left" valign="top"> 
      <label>2.Talep Edilen Tarih Aralığı: <span class="required">*</span></label> 
     </td> 
     <td class="right"> 
      <? if ($akis_kademe == "ekle") { ?> 
      <input class="text" type="text" size="11" name="rezerv_bas_tarih2" id="rbt" 
       onclick='scwNextAction=tarih_degisti.runsAfterSCW(this); scwShow(this,event);' 
       value="<?= (!empty($rez_bilgi['rezerv_bas_zaman'])) ? strftime("%d %b %Y", tarih_yap($rez_bilgi['rezerv_bas_zaman'])) : '' ?>" /> 

      <label>-</label> 
      <input class="text" type="text" size="11" name="rezerv_bit_tarih2" id="rbt2" 
       onclick='scwNextAction=tarih_kontrol.runsAfterSCW(this); scwShow(this,event);' 
       value="<?= (!empty($rez_bilgi['rezerv_bit_zaman'])) ? strftime("%d %b %Y", tarih_yap($rez_bilgi['rezerv_bit_zaman'])) : '' ?>" /> 

      <? } else echo strftime("%d %b %Y %H:%M", tarih_yap($rez_bilgi['rezerv_bas_zaman'], true)) . ' - ' . strftime("%d %b %Y %H:%M", tarih_yap($rez_bilgi['rezerv_bit_zaman'], true)) ?> 
     </td> 
    </tr> 


<? 
}?> 
+2

你不能直接從JS調用PHP代碼。你需要使用AJAX。 –

+0

我沒有實際使用JS。我想知道如何每次點擊添加一次? @JonStirling – FurkOk

+0

你必須使用js,php只能在內容進入瀏覽器之前工作,清除? –

回答

1

你可以試試下面的jQuery函數:

$("#buttonID").click(function(){ 
     $("div#divID").append("<div style='color:green'>Appended text</div>"); 
    }); 

希望它能幫助。 =)

0

你不能做到這一點,但你可以是電話阿賈克斯,這從另一方面可以爲您做你的if語句,那麼成功函數參數調用PHP腳本

$("#buttonID").click(function(){ 
    $.ajax({ 
    url: 'your-script.php', 
    data: { parameters } 
    success: function(data) { 
    //do what you got to do : > 
    } 
    });  
}); 

所以在PHP腳本什麼PHP返回/打印,根據該響應,你可以做你的工作

1

你必須使用js作爲php只有在內容到達瀏覽器之前工作。如果您要添加的內容未添加,您可以在隱藏的textarea中回顯它們,並在單擊它時附加代碼。如果您希望內容隨時間變化或刪除文件,則需要使用ajax。

$('.js-append').click(function() { 
 
    $('.js-container').append($('.js-append-content').val()); 
 
});
.hidden { 
 
    display: none 
 
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.1.1/jquery.min.js"></script> 
 
<a class="js-append">append</a> 
 
<div class="js-container"></div> 
 
<textarea class="hidden js-append-content"> 
 
    <?php echo 'your content ';?> test content<br> 
 
</textarea>