これら 2 つのスクリプトを相互に接続し、その結果をその profile.php ファイルに出力する方法を教えてください。
また、それは安全で、profile.php ハッシュを出力しますか?
var parts = window.location.hash.split('/');
var id = parts[parts.length - 1];
と
p: function(){
$.post("profile.php", function(profile) {
$('#result').html(profile);
});
}