2

私のjqueryの何が問題になっていますか?画面サイズに応じてdivを大きくしたいと思います。良い例はたくさんありますが、それでも成功しません。

.picLeft {
    border: 4px solid black;
    border-radius: 15px;
    width: 130px !important;-------> I need to change this
    height: 130px;-------> I need to change this
    text-align: center;
    background-color: white;
    margin: 10px !important;
    padding: 0px;
    float: left;
}

**EDIT TWO DIVS LIKE THAT**
var height = window.innerHeight;
var width = window.innerWidth;
console.log("height------->" +height);
console.log("width-------->" +width);
// <div class="ui-block-a picLeft" id="leftDiv">
//$("#leftDiv").css("width","300 !important"); NOT working
$(".picLeft").css("width","300 !important"); //NOT Working

<div class="ui-grid-a"   style="background-color:black">
    <div class="ui-block-a picLeft" id="leftDiv">
    <img src="images/nk100x100.jpg" data-theme="c"
                id="pictureId" />
</div>
    <div class="ui-block-b picRight">
        <img src="images/th100x100.jpg" data-theme="c" id="pictureId2"  />
    </div>
</div>

ありがとうございました!サーミ人

4

5 に答える 5

2
$(".picLeft").css("width","300px !important"); //Added "px"
于 2012-07-23T12:12:47.923 に答える
2

あなたが逃したpx

$(".picLeft").css("width","300px !important"); 

これを行うには、パーセンテージ値またはCSS3メディアクエリを使用することをお勧めします。

于 2012-07-23T12:13:05.303 に答える
2

これはどう:

$(window).resize(function()
{
    $('#display').css('width', ($(this).width() - 100) + 'px');
});​

http://jsfiddle.net/qJCc9/

于 2012-07-23T12:14:54.863 に答える
1

これを試して...

 var width = jQuery(window).width();       
 jQuery('div.picLeft').css('width':width); 
 jQuery(window).resize(function() {
        var width = jQuery(window).width();  
        jQuery('div.picLeft').css('width':width);
    });
于 2012-07-23T12:14:30.000 に答える
1

以下の例のような式をcssファイルで使用することもできます。

width: expression((document.body.clientWidth - 300)  + "px") !important;

役に立つかもしれないと思った。このような条件付きのものも実行できます。

width: expression( document.body.clientWidth > 1000 ? "1000px" : "99%" ); 

これはあなたが尋ねたものではないことを私は知っていますが、他の人はすでに良い例を挙げています。これは単なる代替手段です。

于 2012-07-23T12:16:35.050 に答える