1
私は、検索関数から、そして私が使うことができるJSやPHPの関数の中で最高の永遠の価値を得るために全力で取り組んでいます。Evercookieの値を関数から外す
best_candidateのアラートをトリガするコードがありますが、関数の値を返す方法がわかりません(入れ子にされた関数が私を引きつけていると推測しています)ので、 ec.get()関数の外の値
ご協力いただければ幸いです。ありがとう!
function getCookie(best_candidate, all_candidates)
{
alert("The retrieved cookie is: " + best_candidate + "\n" +
"You can see what each storage mechanism returned " +
"by looping through the all_candidates object.");
for (var item in all_candidates)
{
document.write("Storage mechanism " + item +
" returned: " + all_candidates[item] + "<br>");
}
}
ec.get("id", getCookie);
EverCookieは悪である、なぜあなたはそれを使用していますか? – meagar