- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在观看一个关于创建工具提示的 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/
我的团队正在使用 gerrit 代码审查,本质上这意味着默认的推送行为会绕过标准工作流程,因此我们需要使用 git push origin HEAD:refs/for/feature 来正确推送我们的
我是 assembly 新手,我正在使用 MASM。我看到这些代码行,想知道这之间有什么区别 a) push myVar b) push [myVar] c) push OFFSET myVar 我怎
美好的一天! 将镜像推送到docker hub时遇到一些问题。我的第一个软件版本: vagrant@debian-8-docker:~$ docker version Client version:
我有三个 Controller 一二三 .首先是navigationController的rootViewController。 在 SecondViewController ,我有一个名为 的协议(
我在这个 Google 教程的帮助下实现了一个 Web Push API: https://developers.google.com/web/fundamentals/getting-started
我有两个模式: var optionsSchema = new Schema({ locationname: String, locationnumber : String
我是 git 的新手并对其进行了测试。我已经能够克隆 friend 存储库进行小的本地更改并提交。 我现在想测试将我的本地更改推送到远程存储库,但不幸的是当我尝试进行推送时 $ git push <
我们正在公司讨论 git rebase 之后该做什么。在rebase之后,您需要将更改推送到远程origin,但是当git不允许时我们应该怎么做呢?实际上,我们正在讨论当分支已经被推送时我们最常用的两
我正在使用具有嵌入式 github 支持的新 IDE。在命令行本地,我可以成功地使用 git push orgin master 并更新 github。但是我的 IDE 使用带有 -v 标志的命令,这
我仍在阅读有关 RoR 的一些指南,我被困在 Deploying The Demo App 上 我遵循了说明: With the completion of the Microposts resour
我正在尝试创建一个可以将我的 git 存储库镜像到另一个存储库的脚本。一切正常,但它一直在说 [remote rejected] refs/pull/xx/head -> refs/pull/xx/h
我想了解使用 Tortoise SVN 构建过程的一些过程。主要是 我想知道你是否插入: 主线中继 QA 后的一个分支将其抓取到本地的工作副本中并测试该分支,然后一些构建推送该分支 我遇到的问题是我在
在谈论将消息推送到移动应用程序以触发 WAP 内容的下载时,似乎都使用了 WAP 推送和 SMS 推送这两个术语。 这些术语是指相同的机制还是具有不同的含义? 最佳答案 SMS Push 是告诉终端发
我只是想知道是否有人使用这种技术: 由于推送通知仅随 OS 3.0 一起提供,因此我一直在考虑使用电子邮件推送(Exchange、mobile.me)作为解决方法: 您可以注册一个 URL,例如。 m
我正在 build WP website using DIVI theme .应该被插入 dataLayer 的标签被默认的“未设置”值卡在某个地方。 为了推送我使用脚本的值: functi
我最近删除了xcode 6 beta 3并安装了xcode 6 beta 6 当我在终端输入gitpush时,这发生了 xcrun:错误: Activity 的开发人员路径(“/Application
我即将实现ionic-native Push Notifications .这可以在浏览器中运行吗?还是我需要安装 iOS/Android 模拟器? 最佳答案 除非您使用 Phonegap 推送服务器
Safari 12.1 是否支持服务 worker PWA 推送通知?我试过这个 demo在 iOS 上,但它仍然不适合我。 有机会得到它们吗?谢谢。 最佳答案 目前没有关于此功能的通信...Appl
目前我有很多 chrome 浏览器的推送订阅都是这样的方法, swr.pushManager.subscribe({userVisibleOnly: true}) .then(function
我需要 4 个过渡效果,但我只知道 2 个过渡效果,还有 2 个我不知道。我知道的 2 个过渡动画是: 过渡时下推: 并向下推过渡: 但
我是一名优秀的程序员,十分优秀!