-4
我剛剛得到了我遇到的問題的解決方案,但我不確定如何實際實現它。如何實現這個jQuery代碼
$(function(){
$.get('file1.php', function(data){
$('#dropdown1').html(data);
});
// on change of dropdown1 populate dropdown2 with the respective data
$('#dropdown1').change(function(){
$.get('file2.php',{ make: $(this).val() }, function(data){
$(this).html(data);
});
});
});
這裏是我問 Ajax form, 2 drop downs with external source
的問題,我仍然不確定如何格式化文件1和file2.php以及如何落實到我的形式。 我真的很感激你的建議/幫助。謝謝!
哇,我覺得奇ret遲鈍了哈哈。我以爲這是PHP:/這就是爲什麼它不工作。謝謝你的解釋! –