我有这个代码:
我希望它默认做一些事情,基本上当您查看页面时,它会发出 ajax 请求并显示所有数据。
但是当您单击链接时,它会显示特定数据。
但是如何在不重复代码的情况下做到这一点。
例子:
// when click on the link
$('a').click( function(){
$.getJSON('file.ext', function( data ){
//same code
});
});
// when the page is loaded
$.getJSON('file.ext', function( data ){
//same code
});