gpt4 book ai didi

javascript - 为什么输入字段没有设置边框?

转载 作者:行者123 更新时间:2023-11-28 07:25:05 24 4
gpt4 key购买 nike

我尝试在我的输入字段上添加边框。我可以在文本字段上添加边框,但它适用于整个部分。我需要仅向输入字段添加边框,直到字符开始滚动。换句话说,如果您开始在输入字段上输入几个字符后,它开始水平滚动,我需要添加边框,而不是输入的整个宽度。

这是我的代码 http://codepen.io/anon/pen/oXvKeb

<html ng-app="ionicApp">
<head>
<meta charset="utf-8">
<meta name="viewport" content="initial-scale=1, maximum-scale=1, user-scalable=no, width=device-width">

<title>Sign-in, Then Tabs Example</title>

<link href="//code.ionicframework.com/nightly/css/ionic.css" rel="stylesheet">
<script src="//code.ionicframework.com/nightly/js/ionic.bundle.js"></script>

</head>

<body>

<ion-header-bar class="bar-balanced">

<h1 class="title">Station ID</h1>


</ion-header-bar>


<ion-content>
<div class="list">
<label class="item item-input">
<span class="input-label">StationName</span>
<input type="text" ng-model="user.username" class="bdr">
</label>
</div>
</ion-content>

<ion-footer-bar class="bar-balanced">
<h1 class="title">Footer!</h1>
</ion-footer-bar>








</body>
</html>

<强>

我添加了类“bdr”

最佳答案

我认为你可以使用ng-classng-change来做到这一点。

您的文本字段应该是

在 Controller 中添加一些代码

     $scope.customClassName=undefined;
$scope.changeBorder=function(){
$scope.customClassName=undefined;
if(user.username.length>1){
$scope.customClassName="bdr";
}
}

如果您在输入字段中写入任何值,则该函数将执行并检查条件,最后将 ng-class 更新为您的原始类:)

关于javascript - 为什么输入字段没有设置边框?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/29767476/

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