gpt4 book ai didi

javascript - 根据选择下拉标签中的文本大小更改样式

转载 作者:行者123 更新时间:2023-11-28 13:53:23 27 4
gpt4 key购买 nike

代码如下。根据文本大小,我想更改 DIV 的宽度。例如,如果 select 选项的最大文本长度超过 100,则将父 div 的宽度更改为 240px,并更改 select 标签的宽度。

<div class="products">
<select>
<option>Test 1</option>
<option>Test 2</option>
<option>Test 3</option>
<option>Test Test Test Test Test </option>
</select>
</div>

我尝试过的javaScript

jQuery(document).ready(function(){

jQuery('.products select option').each(function(){

var maxLength = jQuery(this).val().length;
console.log(maxLength);

});

// if max length is greater than 50 then increase the width of the div 250px


});

示例 JS Bin

最佳答案

选择框的渲染机制是,它默认采用最大长度。假设在您的示例中,当选择框找到“测试测试测试”时,选择框占据其长度。

要实现您想要的效果,您可以编写以下内容。

你的 jQuery:

jQuery(document).ready(function(){

jQuery('.products select option').each(function(){

var maxLength = jQuery(this).val().length;
if(length > maxLength){
$('.products select,.products').css("width","250");
}

});

// if max length is greater than 50 then increase the width of the div 250px


});

您的 Html 标记将是:-

<!DOCTYPE html>
<html>
<head>
<script class="jsbin" src="http://ajax.googleapis.com/ajax/libs/jquery/1/jquery.min.js"></script>
<meta charset=utf-8 />
<title>JS Bin</title>
<!--[if IE]>
<script src="http://html5shiv.googlecode.com/svn/trunk/html5.js"></script>
<![endif]-->
<style>
article, aside, figure, footer, header, hgroup,
menu, nav, section { display: block; }
.products{
background:red;
width:100px;
height:30px;

}
</style>
</head>
<body>
<p id="hello">Hello World</p>

<div class="products">
<select>
<option>Test 1</option>
<option>Test 2</option>
<option>Test 3</option>
<option>Test Test Test T Test Test T Test Test T </option>
</select>
</div>

</body>
</html>

关于javascript - 根据选择下拉标签中的文本大小更改样式,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9477727/

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