オンライン ヘルプを電話バージョンにリダイレクトしようとしています。ただし、私は単一のソースから電話とデスクトップのバージョンを生成しているので、それぞれの方法でそれを行うコードが必要です (電話 <-769-> デスクトップ)。サイズが原因でリダイレクトが発生しました:
if (screen.width <= 769 || windowWidth <= 769) {
window.location = "../phone/Selecting_a_School_Register.htm";
しかし、私が電話ページにいたとき、ページをロードしようとし続けました(理由がわかります). 私は自分で試してみましたが、これは初めてです。これが私の(失敗した)試みです:
windowWidth = window.innerWidth;
<!--
if (location.pathname = "/desktop/Selecting_a_School_Register.htm";)
{
} else if (screen.width <= 769 || windowWidth <= 769) {
window.location = "../phone/Selecting_a_School_Register.htm";
}
</script><script>
if (location.pathname = "/phone/Selecting_a_School_Register.htm";)
{
} else if (screen.width >= 769 || windowWidth >= 769) {
window.location = "../desktop/Selecting_a_School_Register.htm";
}