アプリのタスク マネージャーを作成しています。ウィジェットの高さを計算して、要件を満たしていれば何かを実行しようとしています。基本的に、タスク ウィジェットの最大高さ (最小高さは既に設定されています) を取得するために、ウィンドウの高さから別の数値を引いた値を取得したいと考えています。次に、div の実際の高さを動的に取得し、それが最大の高さと等しい場合は、いくつかの css プロパティを変更したいと考えています。これを行うためにjquery 1.5.2を使用しています。これが私が持っているものです...
$(document).ready(function() {
//Get the height for #tasks
var tH = Math.round($(window).height() - 463);
$('#tasks').css('height', tH); //Make it the max height
var ti = Math.round($("#tasks").height()); //Get actual height of #tasks
if(tH==ti){ // If #tasks actual height is equal to the max-height than do...
//alert('true');
$('.taskItems').css('width', '172px');
$('.tT, .tD').css('width', '135px');
console.debug(ti + ' ' + tH);
}else{
alert(tH + ' ' + ti);
console.debug(ti + ' ' + tH);
}
});
"alert('true')"が最初に発生し、"max-height"が"height"に変更されている限り、これはうまく機能します。
アラートがコメント化されると、if ステートメントが機能しなくなります。
とき
$("#tasks").css('height', tH) は $("#tasks").css('max-height', tH) に変更されます
値はめちゃくちゃオフです。例: 78/130。cssは次のとおりです...
#tasks {
border:1px solid #D1D1D1;
border-top:none;
color:rgb(82,124,149);
display:inline-block;
font-size:12px;
margin:0px 0px 0px 1px;
overflow:auto;
width:194px;
}
どんな助けでも大歓迎です。前もって感謝します。