我試圖在幾個WordPress頁面中嵌入一個iFrame。每個頁面將使用不同的iFrame內容。這是針對商業網站的,因此需要第一個iframe作爲客戶的登錄。在不同的WP頁面隨後的I幀將是產品搜索,結賬......((我的問題是在底部))如何在關閉/ body標籤後在WordPress中添加Javascript
在header.php中,我把我需要包括一些初始代碼每個WordPress頁面。
我在每個頁面的主體內添加了iframe。
我需要將iframe初始化爲特定的iframe內容。我想將此代碼收盤
</body>
標籤之後,如下所示:
<html>
<head>
<script>
var absDomain = "http://www.webstore.com/"
var iframeObj;
var timestampString = '' + new Date().getTime() + ''
document.write('<script type="text/javascript" src="' + absDomain + 'Support.js?'+timestampString+'"><\/script>');
document.write('<script type="text/javascript" src="' + absDomain + 'ProductSearch.js?'+timestampString+'"><\/script>');
document.write('<script type="text/javascript" src="' + absDomain + 'Environment.js?'+timestampString+'"><\/script>');
function gotoIframe(theLocation){
var timeStamp = "";
iframeObj = document.getElementById("iframeContent");
timeStamp = "&" + new Date().getTime();
iframeObj.src = absDomain + theLocation + "?iframe=yes" + timeStamp;
}
function executeIFrameProductSearch(str1, str2){
goTo_CategoryForIframe(str1, str2, document.getElementById("iframeContent"));
}
</script>
</head>
<body>
<!-- iFrame embedded below -->
<iframe id="iframeContent" style="width:100%;height:500px; " src=""></iframe>
</body>
<script>
//script needed for initial iframe page and iframe support.
iframeObj = document.getElementById("iframeContent");
gotoIframe("CustomerLogin.html");
</script>
</html>
//After the above code section (after the </body> tag) is embedded into the Login page, I expect to use:
//Customer Login:
<a href="javascript:gotoIframe('CustomerLogin.html')">Customer Login</a>
//Product Search:
<a href="javascript:gotoIframe('ProductSearch.html')">Product Search</a>
問:我在哪裏插入這對我的每一個具體的WordPress網頁的結束標記之後的代碼?謝謝。
我沒有得到怪異離奇,並要求該