gpt4 book ai didi

jQuery 缓存元素

转载 作者:行者123 更新时间:2023-12-01 03:20:00 25 4
gpt4 key购买 nike

我有一个函数,它使用缓存的元素(el)来更改2 div的字体大小。当函数执行时,我需要根据它所在的 div(tagCommontagLatin)确保字体不会太小或太大。那么我如何在函数中确定哪个元素是通过 el 传递给它的?

我想我可能想得太多或做错了,感觉就像我入侵它......通常当感觉有什么问题时。

var cb               = $('#tagCommon');
var lb = $('#tagLatin');
changeFontSize(cb,1,'up');

function changeFontSize(el,amount,UporDown){
var size = parseFloat($(el).css("font-size").replace(/px/, ""));
// do some stuff here

// ????????
if(el == $('#tagCommon')) //check font size and alert if too small
if(el == $('#tagLatin')) //check font size and alert if too small
}

感谢您的宝贵时间。

托德

最佳答案

使用 jQuery is()方法

Check the current matched set of elements against a selector, element, or jQuery object and return true if at least one of these elements matches the given arguments.

if(el.is('#tagCommon'))
{
// your code here
}

关于jQuery 缓存元素,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/10961769/

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