gpt4 book ai didi

jquery - Bootstrap :why intlTelinput changes the width of the input element?

转载 作者:行者123 更新时间:2023-12-01 07:06:11 26 4
gpt4 key购买 nike

我想将电话号码输入放入订阅表单中,并由 intlTelInput 库进行验证,这是我的代码:

<!DOCTYPE html>
<html lang="en">
<head>
<title>Bootstrap Example</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">


<link rel="stylesheet" type="text/css" href="flags.min.css">
<link rel="stylesheet" type="text/css" href="css2.css">
<link rel="stylesheet" type="text/css" href="bootstrap-social.css">
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">

<link rel="stylesheet" href="build/css/intlTelInput.css">
<script src="google/jquery-1.11.1.min.js"></script>
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"></script>


</head>

<div class="container">

<div class="row flex-grow">


<div class="col-xs-offset-1 col-xs-10 col-lg-12 col-lg-offset-0">


<div class="row" id="grad1">
<br>

<div class="col-xs-offset-1 col-xs-10 col-lg-offset-4 col-lg-4">

<form method="post" action="serv2.php" onsubmit="return submitForm(this);">

<fieldset>

<div class="row">


<div class="form-group phone">

<input type="tel" class="form-control" id="phone" name="phone" placeholder="Phone number" />
</div>

<div class="form-group country">
<input type="text" id="country" name="country" class="form-control" placeholder="Country" />
</div>


<div class="form-group col-lg-6 col-lg-offset-3">
<div>
<label for="bouton"><br></label>
<div>
<button type="submit" class="btn btn-default" style="background-color: #00B0F0; color:white; width: 100%;border:none;">Valider</button>
</div>
</div>
</div>


</div>

</fieldset>

</form>
</div>

</div>


</div>

</div>

</div>

</html>

</body>

<script src="build/js/intlTelInput.min.js"></script>

<script>


$("#phone").intlTelInput({

initialCountry: "auto",
geoIpLookup: function(callback) {
$.get('https://ipinfo.io', function() {}, "jsonp").always(function(resp) {
var countryCode = (resp && resp.country) ? resp.country : "";
callback(countryCode);
});
},
utilsScript: "build/js/utils.js"
});




var telInput = $("#phone"),
errorMsg = $("#error-msg"),
validMsg = $("#valid-msg");

telInput.intlTelInput({
utilsScript: "build/js/utils.js"
});

</script>

问题在于手机输入不像国家/地区那样采用表单的全宽。

我尝试使用 document.getElementById('phone').style.minWidth = 100%; 更改它,但它删除了 intlTelInput 库的操作(即不再有旗帜图标)。

有什么想法吗?

谢谢

最佳答案

所以我最近使用包 ng2TelInput 将其添加到我的 Angular 项目中。所以我发现了同样的问题,我的 CSS 无法更改并且被卡住了。

即使您添加 .iti { width: 100%; }在你的 CSS 类中,这是行不通的,正如文档中提到的。您必须转到以下路径(确保您完全遵循该路径):

node_modules/intl-tel-input/build/css/intlTelInput.css

并在那里添加以下代码,然后它就可以工作了。

.iti {
width: 100%;
display: block;
}

关于jquery - Bootstrap :why intlTelinput changes the width of the input element?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/44418593/

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