少しガイドが必要です。ページが完全に読み込まれるまで、これらの 2 つの関数の実行を遅らせるか、5000 ミリ秒後に時限爆弾を実行しようとしています。
最新のjquery 1.6を使用しています
あなたの助けとコードスニペットを前もってありがとう:)
$("a.siteNavLink").each(function() {
var _href = $(this).attr("href");
$(this).attr("href", _href + '?p=client');
});
$("a.footernav").each(function() {
var _href = $(this).attr("href");
$(this).attr("href", _href + '?p=client');
});