這篇文章給大家介紹bootstrap怎么在electron中使用,內(nèi)容非常詳細(xì),感興趣的小伙伴們可以參考借鑒,希望對(duì)大家能有所幫助。
成都創(chuàng)新互聯(lián)專業(yè)提供眉山聯(lián)通機(jī)房服務(wù),為用戶提供五星數(shù)據(jù)中心、電信、雙線接入解決方案,用戶可自行在線購(gòu)買眉山聯(lián)通機(jī)房服務(wù),并享受7*24小時(shí)金牌售后服務(wù)。
安裝
安裝bootstrap命令如下:
npm install bootstrap --save
安裝后可能報(bào)告如下錯(cuò)誤:
npm WARN bootstrap@4.1.3 requires a peer of popper.js@^1.14.3 but none is installed. You must install peer dependencies yourself.
需要自行安裝popper,命令如下:
npm install popper.js@^1.14.3 --save
頁(yè)面引入bootstrap
頁(yè)面引入bootstrap的css和js文件如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Title</title> <link href="./node_modules/bootstrap/dist/css/bootstrap.min.css" rel="external nofollow" rel="stylesheet"/> </head> <body> Hello electron! <div> <button id="openFile" class="btn btn-success">Open File</button> <button id="sendMsg" class="btn btn-warning">Send Message (Open File)</button> </div> <script> window.$ = window.jQuery = require('./node_modules/jquery/dist/jquery.min.js'); require('./node_modules/bootstrap/dist/js/bootstrap.min.js'); </script>
注:網(wǎng)上有的例子中,引入bootstrap.min.css是用傳統(tǒng)方式引入,即:
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" rel="external nofollow" >
這種方式太搞笑了吧,明明已經(jīng)在本地裝好了全套的bootstrap,偏偏CSS還要用網(wǎng)絡(luò)方式引入,又浪費(fèi)流量,速度又慢,真是不知道想出這種方式的人是怎么想的。
補(bǔ)充:在electron中使用bootstrap時(shí),雖然在引用bootstrap之前引用了jQuery,但是依然出現(xiàn)錯(cuò)誤:
Uncaught error: bootstrap's javascript requires jquery
解決方法:不使用script標(biāo)簽加載jQuery,而是使用下面的方法加載:
window.$ = window.jQuery = require('/path/to/jquery');
關(guān)于bootstrap怎么在electron中使用就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺(jué)得文章不錯(cuò),可以把它分享出去讓更多的人看到。
本文標(biāo)題:bootstrap怎么在electron中使用
鏈接地址:http://jinyejixie.com/article26/jjisjg.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供外貿(mào)建站、定制網(wǎng)站、標(biāo)簽優(yōu)化、建站公司、面包屑導(dǎo)航、做網(wǎng)站
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)