我有一个Django应用,我想在其中使用intl-tel-input小部件。在控制台中,它表明它已成功加载,当我检查页面时,输入标签如下所示:
<input type="tel" name="Telephone_no" id="phone" class="textinput textInput form-control">
,然后在css文件中,我更改了成功加载图像的位置,例如../images/
(flags.png的位置),并在页面中插入了此内容:
<script>
var input = document.querySelector("#phone");
window.intlTelInput(input);
</script>
,但窗口小部件从不显示。我该怎么办?