我需要4x4按鈕,因爲我是HTML等新手,我決定使用簡單但不推薦使用的表。由於我使用了一個預製的在線發現的Filebrowser,我必須將我的Jquery文件更改爲適合Filebrowser的新版本(它不會與舊版本打開)。整個樣式表已更改,但這不是真正的問題。當我按下我的按鈕來打開Filebrowser時,我的表格移動到我最初在JS文件中指定的位置。然後,當我關閉Filebrowser時,需要半秒鐘才能更換。
爲什麼我的JS(jQuery代碼)定位不適用於從新的Jquery開始?表移動到j按鈕點擊指定的位置 - 然後移回
<table id="tablediv">
<tbody>
<tr>
<td id="buttonfield" style="width:25%;"><button type="button" id="button1"class="button">1</button></td>
<td style="width:25%;"><button onclick="test()" type="button" id="button2"class="button">2</button></td>
<td style="width:25%;"><button type="button" id="button3"class="button">3</button></td>
<td style="width:25%;"><button type="button" id="button4"class="button">4</button></td>
</tr>
<tr>
<td id="buttonfield2" style="width:25%;"><button type="button" id="button1"class="button">5</button></td>
<td style="width:25%;"><button type="button" id="button1"class="button">6</button></td>
<td style="width:25%;"><button type="button" id="button1"class="button">7</button></td>
<td style="width:25%;"><button type="button" id="button1"class="button">8</button></td>
</tr>
<tr>
<td id="buttonfield3" style="width:25%;"><button type="button" id="button1"class="button">9</button></td>
<td style="width:25%;"><button type="button" id="button1"class="button">10</button></td>
<td style="width:25%;"><button type="button" id="button1"class="button">11</button></td>
<td style="width:25%;"><button type="button" id="button1"class="button">12</button></td>
</tr>
<tr>
<td id="buttonfield4" style="width:25%;"><button type="button" id="button1"class="button">13</button></td>
<td style="width:25%;"><button type="button" id="button1"class="button">14</button></td>
<td style="width:25%;"><button type="button" id="button1"class="button">15</button></td>
<td style="width:25%;"><button type="button" id="button1"class="button">16</button></td>
</tr>
CSS:
#tablediv {
width:100%;
height:80%;
}
#button1, #button2, #button3, #button4 {
width:100%;
height:100%;
}
table {
width:100%;
}
JS:
totalWidth =$('body').width();
totalHeight=$('body').height();
menuLength=(totalWidth*0.03);
$("#tablediv").css("padding-top", menuLength+(menuLength*0.50));
$("#buttonfield").css("height", menuLength+menuLength);
$("#buttonfield2").css("height", menuLength+menuLength);
$("#buttonfield3").css("height", menuLength+menuLength);
$("#buttonfield4").css("height", menuLength+menuLength);
這是按鈕的功能:
$("#button4").click(function() {
$.mobile.changePage("fileBrowser.html");
});
我改變了我的Jquery從jquery.js和(jQuery JavaScript庫v1.9.1的),以
<link type="text/css" href="jquery.mobile-1.3.0.min.css" rel="stylesheet" />
<script src="jquery-1.9.1.min.js" type="text/javascript"></script>
<script src="jquery.mobile-1.3.0.min.js" type="text/javascript"></script>
原來的佈局與老的jQuery文件。 (它應該是怎樣看)
佈局與新的jQuery
現在,第二我按下一個按鈕(假設按鈕1)打開Filebrowser - 整個佈局移動到這一點。當我關閉Filebrowser時,它會回到picture2。
可能是什麼問題?我寧願想要解決這個問題,而不是嘗試製作4x4 div(就像我的第一個佈局),因爲我還不是HTML-GUI的最佳選擇。
你可以發佈你的整個文件的html/css/js嗎?我的猜測是,當你打開文件瀏覽器時,它會改變表格的包含div的高度,並且由於表格(和單元格)的高度是用%指定的,所以行相應地調整爲父項當前大小的百分比。顯式設置表格父div的高度可以解決問題,但沒有看到整個頁面的HTML/CSS/JS,這很難說。 –
表格不應用於佈局。你應該使用FLOATS。 –
@diodeus我可能應該。但如前所述,我現在還不擅長定位。難道你不能暗示我如何能像第一張照片所顯示的那樣製作按鈕嗎? – Rad