第七色在线视频,2021少妇久久久久久久久久,亚洲欧洲精品成人久久av18,亚洲国产精品特色大片观看完整版,孙宇晨将参加特朗普的晚宴

為了賬號安全,請及時(shí)綁定郵箱和手機(jī)立即綁定
已解決430363個(gè)問題,去搜搜看,總會有你想問的

如何讓網(wǎng)頁強(qiáng)制顯示桌面版本

如何讓網(wǎng)頁強(qiáng)制顯示桌面版本

浮云間 2023-10-30 15:21:36
問這個(gè)問題有點(diǎn)傻,但是......我為我的簡歷創(chuàng)建了一個(gè)網(wǎng)頁,但事實(shí)是,當(dāng)我從計(jì)算機(jī)瀏覽時(shí),或者我在 Android 上打開“請求桌面版本”時(shí),它的顯示效果很完美,所以我的問題是是否有任何方法可以在 Android 中顯示為桌面模式(有或沒有)請求桌面版本已打開。
查看完整描述

1 回答

?
拉丁的傳說

TA貢獻(xiàn)1789條經(jīng)驗(yàn) 獲得超8個(gè)贊

您可以有一個(gè)變量來控制您的 css 鏈接到樣式表。因此,您為移動設(shè)備設(shè)置了一個(gè)樣式表,為桌面設(shè)置了另一個(gè)樣式表,當(dāng)該按鈕發(fā)送到服務(wù)器發(fā)布/請求時(shí),然后將樣式表頁面的 css 鏈接設(shè)置為該 CSS 頁面。


例如:


在你的 php 頁面上...


if(isset($_POST['desktop_version'])){

    $styleSheet = "desktop.css";

    $buttonDisplay = "Switch to mobile version";

    $buttonName = "main";

}elseif(isset($_POST['main'])){

    $styleSheet = "main.css";

    $buttonDisplay = "Switch to desktop version";

    $buttonName = "desktop_version";

}else{

    // default version when neither instances have been submit yet

    $styleSheet = "main.css";

    $buttonDisplay = "Switch to desktop version";

    $buttonName = "desktop_version";

}


//... in your html head

<link rel="stylesheet" type="text/css" href="<?=$styleSheet?>">


//... in your html body your buttons value is set to the opposite of the set sheet it is using

//... when the style sheet is set to main, the button displays the attributes 

//... for the desktop version and when set to desktop it sets the attributes 

//... for the main version.

<form method="post">

    <button type="submit" name="<?=$buttonName?>" value="<?=$buttonDisplay?>">

</form>


查看完整回答
反對 回復(fù) 2023-10-30
  • 1 回答
  • 0 關(guān)注
  • 195 瀏覽

添加回答

舉報(bào)

0/150
提交
取消
微信客服

購課補(bǔ)貼
聯(lián)系客服咨詢優(yōu)惠詳情

幫助反饋 APP下載

慕課網(wǎng)APP
您的移動學(xué)習(xí)伙伴

公眾號

掃描二維碼
關(guān)注慕課網(wǎng)微信公眾號