- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我想在我的页面中动态地在不同位置执行相同位置的一个 div。
我有一张两行表,每行包含两个 td,并且我有嵌入按钮的 td。单击该嵌入按钮时,我会显示一个包含站点列表的 div,它会动态显示四个按钮。
这是一段html代码:
<table class="allListTbl" id="appListTbl">
<tr>
<td colspan="4" align="center">
<marquee behavior="alternate" width="55%">
<img src="static/images/yolaLogo70x70.jpg" alt="yola_logo" style="width:35px; height:35px; margin-left:2%;" id="yolaLogo"/>
<img src="static/images/weeblyLogo70x70.jpg" alt="webly_logo" style="width:35px; height:35px; margin-left:2%;" id="weblyLogo"/>
<img src="static/images/godaddyLogo70x70.jpg" alt="godaddy_logo" style="width:35px; height:35px; margin-left:2%;" id="godaddyLogo"/>
<img src="static/images/moonfruitLogo70x70.jpg" alt="moomfruit_logo" style="width:35px; height:35px; margin-left:2%;" id="moomfruitLogo"/>
<img src="static/images/htmlLogo70x70.png" alt="customBuild" style="width:35px; height:35px; margin-left:2%;" id="customBuild"/>
<img src="static/images/jimdoLogo70x70.jpg" alt="jimdoLogo" style="width:35px; height:35px; margin-left:2%;" id="jimdoLogo"/>
<img src="static/images/squarespaceLogo70x70.jpg" alt="squareSpaceLogo" style="width:35px; height:35px; margin-right:1px;" id="squareSpaceLogo"/>
</marquee>
</td>
</tr>
<tr>
<td colspan="2"> </td>
</tr>
<tr>
<td> </td>
<td align="center" valign="top">
<table class="mediaFeedTbl" id="mediaFeedTbl">
<tr>
<td colspan="2">
<img src="static/images/MediaFeedNewLogo.png" alt="mediafeedLogo" style="width:60px; height:60px;" id="mediaFeedLogo"/>
</td>
<td>
<span id="AppNameOne">Media Feed</span>
</td>
</tr>
<tr>
<td colspan="3" align="justify" valign="top">
<p id="appDescrptnOne">
Media Feeds or blogs or press coverages are essential to boost your credibility and reputation in the market. Ability to effectively and easily display them on your web site that can impress your customer is essential.
</p>
</td>
</tr>
<tr>
<td>
<input type="button" class="demoBtn" id="demoBtnOne" value="Demo"/>
</td>
<td id="mickey">
<input type="button" class="embedBtn" id="mediaFeedEmbed" value="Embed"/>
</td>
<td>
</td>
</tr>
</table>
</td>
<td>
<table class="propertyTbl" id="propertyTbl">
<tr>
<td colspan="2">
<img src="static/images/propertyUpload_logo.png" alt="propertyUploadLogo" style="width:60px; height:60px;" id="uploadPropertyLogo"/>
</td>
<td>
<span id="AppNameTwo">Upload Property</span>
</td>
</tr>
<tr>
<td colspan="3" align="justify" valign="top">
<p id="appDescrptnTwo">
With the Upload Property app your website visitors will be empowered to easily upload their property listings to you, allowing you to expand your real estate business with ease.
</p>
</td>
</tr>
<tr>
<td>
<input type="button" class="demoBtn" id="demoBtnTwo" value="Demo"/>
</td>
<td>
<input type="button" class="embedBtn" id="uploadPropertyEmbed" value="Embed"/>
</td>
<td>
</td>
</tr>
</table>
</td>
<td> </td>
</tr>
<tr>
<td> </td>
<td align="center" valign="top">
<table class="tblrsrvtnTbl" id="tblrsrvtnTbl">
<tr>
<td colspan="2">
<img src="static/images/logo7_style1.png" alt="tblresrvtnLogo" style="width:60px; height:60px;" id="tblResrvtnLogo"/>
</td>
<td>
<p><span id="AppNameThr">Restaurant Booking</span></p></td>
</tr>
<tr>
<td colspan="3" align="justify" valign="top">
<p id="appDescrptnThr">
SCUBE offers one of the easiest and most flexible ways for restaurants to take complete control over their reservations booking process. Guests can book a table in a cost effective and effortless way. Restaurant Booking by SCUBE provides functionality to easily manage daily rush hours and group bookings and has rich reporting features to make sure that management is always in the know.
</p>
</td>
</tr>
<tr>
<td>
<input type="button" class="demoBtn" id="demoBtnThr" value="Demo"/>
</td>
<td>
<input type="button" class="embedBtn" id="restaurantBookingEmbed" value="Embed"/>
</td>
<td>
</td>
</tr>
</table>
</td>
<td align="left" valign="top">
<table class="salonTbl" id="salonTbl">
<tr>
<td colspan="2">
<img src="static/images/Spa_Salon_logo.png" alt="SpaSalonLogo" style="width:60px; height:60px;" id="spaSalonLogo"/>
</td>
<td>
<span id="AppNameFour">Salon Appointment</span>
</td>
</tr>
<tr>
<td colspan="3" align="justify" valign="top">
<p id="appDescrptnFour">
SCUBE offers one of the easiest and most flexible ways for Salons to take complete control over their services. Interested clients can schedule an appointment in a cost effective and effortless way.
Grow your business by managing your services and clients effectively.
</p>
</td>
</tr>
<tr>
<td>
<input type="button" class="demoBtn" id="demoBtnFour" value="Demo"/>
</td>
<td>
<input type="button" class="embedBtn" id="saloonAppEmbed" value="Embed"/>
</td>
<td>
</td>
</tr>
</table>
</td>
<td> </td>
</tr>
</table>
最佳答案
关于jquery - 如何在两行和 4 tds 的表中动态出现一个 Div 的相同位置?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25661728/
我有一张 table ,我想要 2 个 tds 像这样居中** 你好 | World ** 前后不加空tds?我有这样的东西可以正常工作,但我不想添加额外的 tds 并以相同的方式进行操作
我正在尝试按照 GlassTutorial24 从 TDS 代码生成中生成代码TDS 版本:5.1.0.3,visual studio 2012。 生成的类只有“ErrorGeneratingOutp
我已经在 Sitecore 中使用 TDS 一段时间了,但我的一个网站在尝试同步时刚刚开始出现“找不到网站上下文”错误。有谁知道这是什么原因造成的吗? 该站点是 Sitecore 8,我使用的 TDS
我有一个包含一个 Web 项目和两个 TDS 项目的解决方案。从今天开始,TDS 包构建突然失败,尽管我没有对项目进行任何更改。这是输出消息: 1>------ Rebuild All started
我必须为(部分)作业执行此操作。我个人永远不会使用这样的表格,如果可以选择,我总是会使用 div,但我必须使用表格进行分配。 这是我需要重新创建的一个非常简化的版本: 但这是我能做的最好的: tds
我有以下代码来启用 td 单元格的内联编辑: $('.edit_td').click(function(e) { e.stopPropagation(); resetEditedCel
我如何在这些圆圈之间放置车道,我一直在谷歌搜索,但我没有看到最简单的方法, .table_1 { tr { color: #000000; font-size: 20px;
我有这样的td: 在浏览器中,它应用了红色背景色,但当我看到它的打印预览时,背景中没有红色。字体颜色也是白色,但在打印预览时也会转换为白色。 谁知道可能是什么原因? 谢谢 最佳答案 要使 WebKi
关闭。这个问题需要更多focused .它目前不接受答案。 想改善这个问题吗?更新问题,使其仅关注一个问题 editing this post . 6年前关闭。 Improve this questi
我有一个 TDS 项目文件。当我构建时,它将生成 sitecore 包项来构建输出路径。但是,它将包创建到错误的文件夹目录。 在项目属性中,我将构建输出路径设置为 ......\Build\Deplo
我们正在运行 Sitecore 6.5 和一些 TDS 项目,并且我一直在尝试让 TFS 构建在我们的 TFS 构建服务器上运行。当项目尝试构建时,我们收到以下错误: C:\Program Files
freetds v0.91 - tds 版本不匹配 我想在 Ubuntu 14.04 上使用 FreeBSD 连接到 Windows SQL Server。 FreeTDS 是使用 apt-get 安
我正在寻找一种更jquery/更干净的方法,以便能够选择所有td.some-class,并能够从“selected”开始并应用一些以便随后的tds . A B C
我正在尝试添加多个美元金额的字符串。我从 parseFloat 进行转换时得到 NaN,但我删除了美元符号和所有逗号。有什么建议吗? 我尝试简单地添加它们而不使用parseFloat,但我只得到一个连
好的,你怎么能在我的 fiddle 中看到我试图操纵左表,所以最后它看起来像右边的表:http://jsfiddle.net/SULK3/2/ 为此,我首先尝试通过它们获取 td 循环的值,并查找日期
我有一个这样的表: .... 377 391 .... 386 396 ... 322 314
即使我明确设置了宽度: bla1 bla2 bla3 我的表格随机宽度为 183 像素。如何在不明确设置的情况下使表格获得 600px 宽度?我认为用 td 指定宽度就足够了。注意我想将它
我有一个 jsp 和一些 jspf,我希望其中的短期、长期字段以及标题右对齐,但是一旦我删除宽度属性,它就无法工作从我的样式右对齐开始工作。尽管样式在其中一种中有效jsp,但无法使用包含所有其他 js
我有一个显示在表格中的报告,tds 中的文本必须居中但左对齐,我该如何实现? 最佳答案 您可以将文本包含在 div 中并将其置于 td 中,如下所示: HTML left justified tex
我有一个表,每行有两个 tds。我已经注意到,如果我想换行文本,则对面 td 内的文本不会与其垂直对齐。带有换行符的 td 到达单元格的顶部,另一个保持与中心垂直对齐。什么是最有效的解决方案来保持两个
我是一名优秀的程序员,十分优秀!