我需要帮助将这两个脚本相互连接并将结果输出到该 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);
});
}