好的,这可能真的是一个菜鸟问题,但我还是会问!
目前,我的函数定义如下:
function checkSize(size, otherSize, el) {
if ($(el).width() <= 800) {
size = otherSize;
}
alert(size);
}
但这行不通。
起作用的是:
function checkSize(size, otherSize, el) {
if ($(el).width() <= 800) {
size = otherSize;
} else {
size = 5;
}
alert(size);
}
但是那里的硬编码值显然非常糟糕。
所以实际上,我只想size
在otherSize
条件为真时成为,否则size
应该不受影响。我该怎么做?