gpt4 book ai didi

jquery - 如何为 jqGrid 高度属性 setGridHeight 应用 css 类?

转载 作者:太空宇宙 更新时间:2023-11-04 12:56:23 24 4
gpt4 key购买 nike

我们的目标是应用 media query css class

到目前为止,下面的代码使用 $(window).height() 来查找 height

$('#list').jqGrid('setGridHeight', $(window).height() - 380);

我需要应用 css 类,而不是使用 $(window).height() - 380。谢谢。

最佳答案

你可以尝试使用下面的

// place hidden test div
var $testDiv = $("<div style='display:none'></div>");
$testDiv.addClass("grid_height").appendTo("body");
// I hope you will grid_height from correct media

// alternatively you can try to use
// $("#list").addClass("grid_height");
// but BEFORE you create jqGrid

var height = parseInt($testDiv.css("height"), 10);
$testDiv.remove();

// now you can use height variable to set grid height
$("#list").jqGrid("setGridHeight", height);

更新:The demo似乎有效。

关于jquery - 如何为 jqGrid 高度属性 setGridHeight 应用 css 类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25801368/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com