0

我知道如何在更改窗口大小时使用 Jquery 更改类,但我需要它基于 DIV 的宽度并在 DIV 的宽度更改时动态更改。

$(window).resize(function() {

   var wrapWidth = $('.info-wrap').width();

    if (wrapWidth >= 500) {

      $('#partOne').addClass('big');
      $('#partTwo').addClass('big');

    } else {

      $('#partOne').removeClass('big');
      $('#partTwo').removeClass('big');
    }
});

这在窗口大小更改时有效。但是,我可以在 $(window).resize 中使用什么来获取 DIV 的宽度,因为它会发生变化?

4

4 回答 4

3

这是观察元素属性的示例。

见:MutationObserverMutation Events

CSS

#watch {
    border: 1px solid;
}

HTML

<button id="button">Click me</button>
<div id="watch" style="width: 100px; height: 50px;"></div>

Javascript

/*jslint sub: true, maxerr: 50, indent: 4, browser: true */
/* global global */

(function (global) {
    "use strict";

    if (typeof global.MutationObserver !== "function") {
        global.MutationObserver = global.WebKitMutationObserver || global.MozMutationObserver;
    }

    var watch = document.getElementById("watch");

    function whenClicked() {
        watch.style.width = "200px";
    }

    document.getElementById("button").addEventListener("click", whenClicked, false);

    if (typeof global.MutationObserver !== "function") {
        // chrome doesn't despatch an event for "DOMAttrModified"
        watch.addEventListener("DOMAttrModified", function (evt) {
            console.log("Attribute changed", evt.target);
        }, false);
    } else {
        var observer = new global.MutationObserver(function (mutations) {
            mutations.forEach(function (mutation) {
                if (mutation.type === 'attributes') {
                    console.log("Attribute changed", mutation);
                }
            });
        });

        observer.observe(watch, {
            attributes: true,
            childList: true,
            characterData: true,
            subtree: true
        });
    }
}(window));

jsfiddle

于 2013-07-17T21:44:15.220 回答
2

我曾经为attrchange监听器写了一个插件,它基本上在属性更改时添加了一个监听器函数。对于您提到的需要处理程序来检查宽度和高度的情况,这似乎很方便。

演示:http: //jsfiddle.net/CKTk3/1/

    var prevWidth = $('#test').width(),
        prevHeight = $('#test').height();

    $('#test').attrchange({
        callback: function (e) {
            var curWidth = $(this).width(),
                curHeight = $(this).height();            
            if (prevWidth !== curWidth ||
                prevHeight !== curHeight) {
                console.log('resized: width - ' + prevWidth + ' : ' + curWidth + ' height - ' + prevHeight + ' : ' + curHeight);

                prevWidth = curWidth;
                prevHeight = curHeight;
            }            
        }
    }).resizable();

插件页面: http: //meetselva.github.io/attrchange/

于 2013-07-17T20:55:38.037 回答
0

您可以通过 div 类或 id 获取 div 宽度。例如:$("#div-id").width();

于 2013-07-17T20:44:33.580 回答
0

我认为您需要使用 JQuery 插件,例如Ben Alman 的插件

我认为不存在检测 div 何时调整大小的东西,只有窗口。

于 2013-07-17T20:40:54.723 回答