您好,登錄后才能下訂單哦!
這篇文章主要介紹“jQuery如何實(shí)現(xiàn)鼠標(biāo)提示框效果”,在日常操作中,相信很多人在jQuery如何實(shí)現(xiàn)鼠標(biāo)提示框效果問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”jQuery如何實(shí)現(xiàn)鼠標(biāo)提示框效果”的疑惑有所幫助!接下來,請跟著小編一起來學(xué)習(xí)吧!
jquery是一個(gè)簡潔而快速的JavaScript庫,它具有獨(dú)特的鏈?zhǔn)秸Z法和短小清晰的多功能接口、高效靈活的css選擇器,并且可對CSS選擇器進(jìn)行擴(kuò)展、擁有便捷的插件擴(kuò)展機(jī)制和豐富的插件,是繼Prototype之后又一個(gè)優(yōu)秀的JavaScript代碼庫,能夠用于簡化事件處理、HTML文檔遍歷、Ajax交互和動(dòng)畫,以便快速開發(fā)網(wǎng)站。
實(shí)現(xiàn)效果如上圖,當(dāng)鼠標(biāo)放置到名字上時(shí),則顯示出內(nèi)容詳情。
實(shí)現(xiàn)具體過程如下:
1、需要加這句js
<!--實(shí)現(xiàn)鼠標(biāo)放置名字上顯示氣泡說明的js--> <script> $(function () { $('[data-toggle="popover"]').popover() }); </script>
2、html代碼如下:
<td> <a href="#" rel="external nofollow" rel="external nofollow" data-trigger="hover" title="此處可輸入題目" data-container="body" data-toggle="popover" data-placement="right" data-content="此處是氣泡顯示內(nèi)容的變量">變量名稱</a> </td>
這樣就可以實(shí)現(xiàn)氣泡效果了,還是挺有意思的一個(gè)小效果。
PS:經(jīng)過億速云測試,此處缺少了bootstrap相關(guān)組件,這里給出了一個(gè)demo示例供大家參考:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>www.jb51.net jQuery氣泡提示框</title> <script src="http://libs.baidu.com/jquery/2.0.0/jquery.min.js"></script> <link href="https://cdn.bootcss.com/bootstrap-table/1.15.0/bootstrap-table.min.css" rel="external nofollow" rel=stylesheet/> <script src="https://cdn.bootcss.com/popper.js/1.15.0/umd/popper.js"></script> <script src="https://cdn.bootcss.com/twitter-bootstrap/4.4.1/js/bootstrap.min.js"></script> </head> <body> <td> <a href="#" rel="external nofollow" rel="external nofollow" data-trigger="hover" title="此處可輸入題目" data-container="body" data-toggle="popover" data-placement="right" data-content="此處是氣泡顯示內(nèi)容的變量">變量名稱</a> </td> <script> $(function () { $('[data-toggle="popover"]').popover() }); </script> </body> </html>
到此,關(guān)于“jQuery如何實(shí)現(xiàn)鼠標(biāo)提示框效果”的學(xué)習(xí)就結(jié)束了,希望能夠解決大家的疑惑。理論與實(shí)踐的搭配能更好的幫助大家學(xué)習(xí),快去試試吧!若想繼續(xù)學(xué)習(xí)更多相關(guān)知識,請繼續(xù)關(guān)注億速云網(wǎng)站,小編會繼續(xù)努力為大家?guī)砀鄬?shí)用的文章!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。