日历图标 bootstrap 和 angularjs

Calendar icon bootstrap and angularjs

我想在我的日期选择器上有一个日历图标,但它似乎不起作用。只显示了一个箭头,没有显示日历图标

<span class="add-on"><i class="glyphicon glyphicon-calendar"></i></span>

这是你想要的,但我不知道你的angularJs问题是什么!!

<!doctype html>
<html>

<head>
  <link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/css/bootstrap.min.css" integrity="sha384-1q8mTJOASx8j1Au+a5WDVnPi2lkFfwwEAa8hDDdjZlpLegxhjVME1fgjWPGmkzs7" crossorigin="anonymous">
  <script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.6/js/bootstrap.min.js" integrity="sha384-0mSbJDEHialfmuBBQP6A4Qrprq5OVfW37PRR3j5ELqxss1yVqOtnepnHVP9aJ7xS" crossorigin="anonymous"></script>
</head>

<body>
  <span class="add-on"><i class="glyphicon glyphicon-calendar"></i></span>
</body>

</html>