あなたの質問には不明な点がたくさんありますが、
と のどのバージョンをbootstrapvalidator
使用bootstrap
していますか?
feedback icons
JSに含まれていますか?
feedbackIcons: {
valid: 'glyphicon glyphicon-ok',
invalid: 'glyphicon glyphicon-remove',
validating: 'glyphicon glyphicon-refresh'
},
bootstrap.css
またはbootstrap.min.css
ローカル サーバーからロードしていますか?
すべてのフォント ファイルが存在し、名前が正しいか?
fonts フォルダのパスは正しいですか?
可能な解決策。
ほとんどの場合、これは、フォント ファイルが見つからないか、正しく読み込まれていない、フォルダー名が間違っている、またはフォント ファイルのパスが間違っている場合に発生します。
@font-face {
font-family: 'Glyphicons Halflings';
src: url('../fonts/glyphicons-halflings-regular.eot');
src: url('../fonts/glyphicons-halflings-regular.eot?#iefix') format('embedded-opentype'), url('../fonts/glyphicons-halflings-regular.woff') format('woff'), url('../fonts/glyphicons-halflings-regular.ttf') format('truetype'), url('../fonts/glyphicons-halflings-regular.svg#glyphicons-halflingsregular') format('svg');
}
bootstrap.css
CDN サーバーから読み込み、
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/3.3.5/css/bootstrap.css"/>
フォント アイコンが表示されている場合は、ローカルbootstrap.css
ファイルでフォント パスとフォルダ名が正しく、フォント ファイルが存在し、ファイル名が正しいことを確認します。
正しいフォントを入手するには、Bootstrap のホームページにアクセスして、完全な .zip ファイルをダウンロードしてください。そこから 4 つのフォント ファイルをフォント ディレクトリに抽出すると、すべてが機能するはずです。