在 HTML 中为移动浏览器获取工具提示
单击带有标题属性的元素时,会附加带有标题文本的子元素。我们来看一个例子 -
对于 HTML -
<p> The <span class="demo" title="this is underscore">underlined</span> character. </p>
jQuery -
$("span[title]").click(function () { var $title = $(this).find(".title"); if (!$title.length) { $(this).append('<span class="title">' + $(this).attr("title") + '</span>'); } else { $title.remove(); } });
以下是 CSS -
.demo { border-bottom: 2px dotted; position: relative; } .demo .title { position: absolute; top: 15px; background: gray; padding: 5px; left: 0; white-space: nowrap; }
广告