Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试制作一个页面,其中使用 jquery 显示内容。 当用户访问网站时,内容从数据库加载。 我想添加一个按钮,它会触发从数据库加载新数据,但在同一页面上。我该怎么做呢?:)
下面的内容应该可以帮助您入门:
$(function() { $.ajax({ type:'POST', url:'path/to/database file', success: function() { $("body").append(whatever you want to add); } }); });