gpt4 book ai didi

javascript - JQuery - 设置 css 和实际宽度/高度宽度一个函数

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

$("#elem").width(value) //This sets the "CSS" width of elem

$("#elem").attr("width", value) // This sets the "REAL" width of elem

现在,我的问题是,没有任何函数可以同时设置“REAL”和“CSS”宽度吗?

最佳答案

新的 jQuery 函数怎么样:

$.fn.fixWidths = function(width) {
return $(this).width(width).attr('width', width);
};

$(elem).fixWidths(宽度);

关于javascript - JQuery - 设置 css 和实际宽度/高度宽度一个函数,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/18362866/

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