我試圖在加載的元素上應用函數,我在網上搜索但我不明白該怎麼做。將jquery函數應用於加載的元素
有誰能告訴我該怎麼辦?
例子:
<script>
// checkbox cheque
$("#cheque").click(function() {
if($("#cheque").is(":checked"))
{
//alert('Cheque is checked');
$("#load_cheque").load("./server/mode_paiement.php?cheque=1");
}
else
{
//alert('Unchecked Cheque!!');
$("#load_cheque").empty();
}
});
</script>
這是元素加載:
<label for=" echeance " class="form-label size-120 fl-space2">Echéance: <span class="required">*</span></label>
<input type="text" id="echeance" class="required text fl-space2 datepicker-inline" name="echeance" />
當你看到有「日期選擇器內聯」。該probleme是日期選擇器是不是在工作加載輸入
謝謝:)
我想你已經給出了部分代碼,你到底想要實現什麼功能。 – check123 2011-05-31 11:03:52