2017-02-22 29 views

回答

0
  1. 如何使用引導程序文件在Apache Cordova的應用程序?
  2. 是否有任何設置做

首先,你需要下載bootstrap.cssbootstrap.min.css文件。然後你就可以在你的index.html文件中引用它:

<meta name="msapplication-tap-highlight" content="no"> 
    <meta name="viewport" content="user-scalable=no, initial-scale=1, maximum-scale=1, minimum-scale=1, width=device-width"> 
    <!--reference bootstrap.min.css file here --> 
    <link href="css/bootstrap.min.css" rel="stylesheet" /> 
    <link rel="stylesheet" type="text/css" href="css/index.css"> 
    <title>BootStrapDemo</title> 
</head> 
<body> 
    <div class="app" style=""> 
     <button class="btn btn-danger">BootStrap Button</button> 
    </div> 
    <script type="text/javascript" src="cordova.js"></script> 
    <script type="text/javascript" src="scripts/platformOverrides.js"></script> 
    <script type="text/javascript" src="scripts/index.js"></script> 
</body> 
  • 在Visual Studio 2015年的CSS智能感知不工作
  • 我想你沒有正確引用它。如果你正確地引用它,你會得到的情報是這樣的:

    enter image description here

    +0

    我遵循同樣的程序,但仍然面臨着同樣的問題,智能感知不工作 –

    相關問題