我想知道在点击按钮后是否可以在JavaScript(最好是jQuery)中使用MySQL从数据库中提取数据?我目前在页面加载时提取数据,但我不想在开头加载100个项目,因为我希望能够使用不同的按钮拉出某些行?
答案 0 :(得分:1)
<button class="AjaxTrigger" data-example="abc">I do ABC </button>
$('.AjaxTrigger').on('click', function(){
$.get("your-file.php", {example: $(this).data('example')}, function(result){
alert( "This is what php gave me: " + "\n" +result );
}
});
现在你让your-file.php
做任何你想做的事情,就像你正常编写php文件一样。回应结果,在javascript中你会得到返回函数中的确切结果(现在会提醒您的结果)。
如果你想增加你的游戏:
json_encode()
回显)