如果我的應用程序在iframe中加載,我想要提供不同的樣式表。我使用什麼javascript事件來執行此檢查,以及如何提供不同的樣式表?如何執行JavaScript函數以使用不同的樣式表?
編輯:
我試圖連線這對身體onLoad事件:
<script type="text/javascript">
function checkFrame() {
if (window.top!=window.self)
{
// In a Frame or IFrame
document.write("<link rel='stylesheet' type='text/css' href='/custom/embedded'>");
}
else
{
// Not in a frame
document.write("<link rel='stylesheet' type='text/css' href='/custom/standard'>");
}
}
</script>
,但它會顯示空白頁只樣式錶鏈接在裏面。
謝謝大家,各位+1,以供您參考。 – AKWF 2011-02-17 13:31:47