angular js Bootstrap不支持多行和多列

时间:2017-12-09 11:29:23

标签: javascript html css angularjs angular-ui-bootstrap

我正在制作一个带有angularjs的基本二十一点游戏,并使用bootstrap进行布局,但我似乎无法使其工作。 我想要的是横跨顶部的标题,中间和左侧的游戏内容以及右侧当前玩家的列表,但并非所有内容都在页面上运行。 我的代码:

<!DOCTYPE html>
<html lang="en">
<head>
<title>Blackjack</title>
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0-beta.2/css/bootstrap.min.css">
<script src="./angular.js"></script>
<script src="./angular-animate.js"></script>
<script src="./angular-touch.js"></script>
<script src="./ui-bootstrap.js"></script>
<script src="./app.js"></script>
</head>
<body ng-app="myApp">

<div class="container-fluid" ng-controller="main">
<div class = "row">
<div class="col-sm-12">
<h1>Black Jack</h1>
</div>
</div>
<div class="row">
<div class = "col-sm-10">
<div ng-include="'play.html'" my-replace>
</div>
<div ng-include="'next.html'" my-replace>
</div>
<div ng-include="'start.html'" my-replace>    </div>
</div>
<div class="col-sm-2">
<ul class = "row">
<li class="col-sm-12">
<h2>Players</h2>
</li>
<li class = "col-sm-12" ng-repeat="player in players">
<span>{{player.name}}: <button ng-if="!started" ng-click='removePlayer(player)'>Remove</button></span>
</li>
</ul>
</div>
</div>
</div>
<!--
<script src = "https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.js"> </script>
<script>
div = $("div");
(function add(div){
div.each(function(i, val){
this.innerHTML=this.nodeName+" open "+this.className+" "+this.innerHTML+" "+this . nodeName+" close"
add($(this).children());
})})(div);

</script>
-->
</body>
</html>

my-replace指令在内容加载后剥离ng-includes的包装div。 底部的js代码是一个快速调试器,所以我可以看到如何将html解释为firebug light不能与angularjs一起使用。 我也尝试过多个版本的bootstrap 为什么引导程序不起作用?

0 个答案:

没有答案