1 回答

TA貢獻(xiàn)1865條經(jīng)驗(yàn) 獲得超7個(gè)贊
在第 16 行廣告這個(gè));,您缺少關(guān)閉函數(shù) $('#submit').on('click',function(){ 完整代碼如下:
<script language="javascript" type="text/javascript">
$(document).ready(function() {
$('#submit').on('click', function() {
var from_date = $('#from_date').val();
var to_date = $('#to_date').val();
$.ajax({
type: 'POST',
url: 'date_based_report_action.php',
data: 'from_date=' + from_date + '&to_date=' + to_date,
success: function(html) {
alert(html);
$('#tabledata').html(html);
}
});
});
});
</script>
- 1 回答
- 0 關(guān)注
- 179 瀏覽
添加回答
舉報(bào)