gpt4 book ai didi

javascript - 从 JavaScript.push 方法显示工具提示

转载 作者:行者123 更新时间:2023-11-28 17:39:09 28 4
gpt4 key购买 nike

我正在观看一个关于创建工具提示的 youtube 视频 ( http://www.youtube.com/watch?v=gJY8YUjFd58 ),我能够让所有内容在一个平面 html 文件中工作,所有内容都内联并使用单独的 js/css。但是我没能做到的是使用 JavaScript push 方法在 html 页面中显示相同的数据。

我正在使用 JavaScript 将 HTML 表格和内联 CSS 发送到主 HTML 页面 (tt_hvr.html)。 CSS 似乎有效,但我无法显示元素内的悬停文本。我已经发布了文件。有没有人对如何让悬停显示 div 内的文本有任何想法?我已经在下面发布了三个文件(tt_hvr.html、tt_hvr.js、tt_hvr1.js)。提前致谢。

tt_hvr.html

<!DOCTYPE html>
<html>
<head>
<title></title>
</head>

<body>
<p id='data_here'></p>

</body>
<script src='tt_hvr.js' type="text/javascript" charset="utf-8"></script>
<script src='tt_hvr1.js' type="text/javascript" charset="utf-8"></script>
<script src='http://code.jquery.com/jquery-1.9.1.js' type="text/javascript" charset="utf-8"></script>

</html>

tt_hvr.js

   var hvrinfo = [];
hvrinfo.push("<style type='text/css'>");
hvrinfo.push("td {color: sienna;}");

//Testing the tooltip begin.
hvrinfo.push(" .hvrtip0{");
hvrinfo.push(" margin-left:auto;");
hvrinfo.push(" margin-right:auto;");
hvrinfo.push(" margin-top:auto;");
hvrinfo.push(" /*width:250px; */");
hvrinfo.push(" background-color:#ffffff;");
hvrinfo.push(" color:#000000;");
hvrinfo.push(" padding:auto;");
hvrinfo.push(" text-align:left;");
hvrinfo.push(" }");
hvrinfo.push(" .tooltip00{");
hvrinfo.push(" position:absolute; /*Allows it to be anywhere on the page without interrupting any other elements on the page.*/");
hvrinfo.push(" z-index:2;");
hvrinfo.push(" width:auto;");
hvrinfo.push(" padding:5px;");
hvrinfo.push(" background-color:#ffff00;");
hvrinfo.push(" border:2px solid #000000;");
hvrinfo.push(" border-radius:15px; //Rounding the corners on the box.");
hvrinfo.push(" -moz-border-radius:15px; /*Firefox*/");
hvrinfo.push(" display:none; /*Hide from page so that it will only be shown on hover.*/");
hvrinfo.push(" }");
hvrinfo.push(" td.hvrtip0{");
hvrinfo.push(" background-color:#c0c0c0;");
hvrinfo.push(" border:2px solid #e0e0e0;");
hvrinfo.push(" }");
hvrinfo.push(" table,td,th");
hvrinfo.push(" {");
hvrinfo.push(" border:1px solid black;");
hvrinfo.push(" }");
hvrinfo.push(" table");
hvrinfo.push(" {");
hvrinfo.push(" width:50%;");
hvrinfo.push(" border-collapse:collapse;");
hvrinfo.push(" }");
hvrinfo.push(" th");
hvrinfo.push(" {");
hvrinfo.push(" height:50px;");
hvrinfo.push(" }");
hvrinfo.push(" #redthis");
hvrinfo.push(" {");
hvrinfo.push(" color:red;");
hvrinfo.push(" }");
//Testing the tooltip end.

//Pushing the table begin.
hvrinfo.push("</style>");
hvrinfo.push("<table border='1'><tr><th>Row1</th><th>Row2</th><th>Row3</th></tr>");
hvrinfo.push("<tr><td class='hvrtip0'>Cell 01</td><td>Cell 02</td><td>Cell 03</td></tr>");
hvrinfo.push("<tr><td>Cell 04</td><td>Cell 05</td><td>Cell 06</td></tr>");
hvrinfo.push("<tr><td>Cell 07</td><td>Cell 08</td><td class='hvrtip0'>Cell 09</td></tr>");
hvrinfo.push("<tr><td>Cell 10</td><td>Cell 11</td><td>Cell 12</td></tr>");
hvrinfo.push("<tr><td>Cell 13</td><td>Cell 14</td><td>Cell 15</td></tr>");
hvrinfo.push("<tr><td>Cell 16</td><td>Cell 17</td><td>Cell 18</td></tr>");
hvrinfo.push("<tr><td>Cell 19</td><td>Cell 20</td><td>Cell 21</td></tr>");
hvrinfo.push("<tr><td>Cell 22</td><td>Cell 23</td><td>Cell 24</td></tr>");
hvrinfo.push("<tr><td>Cell 25</td><td>Cell 26</td><td>Cell 27</td></tr>");
hvrinfo.push("<tr><td>Cell 28</td><td>Cell 29</td><td>Cell 30</td></tr></table>");
//Pushing the table end.

//Information for the tooltips begin.
hvrinfo.push(" <div class='tooltip00'>");
hvrinfo.push(" 1. RT conducts patient evaluation following <b id='redthis'>Eval & Treat Algorithm</b>.<br />");
hvrinfo.push(" 2. Level of Patients Asthma Control and current medications determined by RT.<br />");
hvrinfo.push(" 3. If Indicated, follow <b id='redthis'>Aerosolized medication Algorithm</b>.<br />");
hvrinfo.push(" 4. Plan constructed for therapy Pre-Op / Post-Op. If poorly controlled, advised or adminster step up in therapy (glucocorticoids).");
hvrinfo.push(" </div>");
//Information for the tooltips end.

var hvrjoin = hvrinfo.join("");
document.getElementById("data_here").innerHTML = hvrjoin;

tt_hvr1.js

 $(document).ready(function(){
$(".hvrtip0").hover(function(){//Hover on the class. This works on all classes in the document.
//mouse enters
$(".tooltip00").css("display","block");
},function(){
//mouse leaves
$(".tooltip00").css("display","block");
});

$(document).mousemove(function(event){
var mx = event.pageX+15;
var my = event.pageY+15;
$(".tooltip00").css("left",mx+"px").css("top",my+"px");
});
});

最佳答案

交换这些行:

<script src='http://code.jquery.com/jquery-1.9.1.js' type="text/javascript" charset="utf-8"></script>
<script src='tt_hvr1.js' type="text/javascript" charset="utf-8"></script>

您需要在使用它的代码之前加载 jQuery。例如。注意这个 fiddle 是如何工作的:http://jsfiddle.net/uPASm/而这个没有:http://jsfiddle.net/uPASm/1/

关于javascript - 从 JavaScript.push 方法显示工具提示,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24475098/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com