我有一个问题,我有一个表单,在jquery对话框中有一个名为“search”的输入和提交按钮。我想在另一个jquery对话框中单击此按钮时显示mysql数据。我该怎么做?
ivqmmu1c1#
试试这个
$(document).on('click', '#search', function (e) { e.preventDefault(); $.ajax({ type: 'get', url: 'getMysqlData.php', success: function (data) { $("#otherDialogBox").html(data); $("#otherDialogBox").dialog(); } }); });
1条答案
按热度按时间ivqmmu1c1#
试试这个