gpt4 book ai didi

javascript - 在 jquery 中使用单击时无法更改 css

转载 作者:行者123 更新时间:2023-11-30 18:32:20 26 4
gpt4 key购买 nike

我有一个小演示:

<div class="box_content_height">
<strong>Height: </strong>
<input type="text" name="height" id="height" value="300" />px
<input type="submit" class="submit_advance" value="submit" />
</div>

和javascript

$('.submit_advance').click(function() {
var height_css = $('#height').val();
$('ul.nav-scroll').css('max-height', height_css+'px');
});

当我键入 input = 500 时,结果 css 没有变化 500结果如何是

.ul.nav-scroll {
max-height: valueofinput+px
}

最佳答案

改变这个:

$('ul.nav-scroll').css('height', height_css+'px');

关于javascript - 在 jquery 中使用单击时无法更改 css,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9287318/

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