drupal视图模块生成的文章标题列表没有标题提示

发布于 2024-10-19 12:15:38 字数 416 浏览 0 评论 0原文

我使用视图模块生成文章标题列表,当我将鼠标悬停在文章标题上时。三个不是节点标题的提示。 html代码是这样的

 <div class="views-field-title">
 <span class="field-content">
  <a href="/resell.html">Resell</a>
  </span>
  </div>

,标签中没有标题=“”,标签

    <a> 

,我的视图设置是添加标题字段并选中l“将此字段链接到节点”。我说得对吗?当我将鼠标悬停在文章标题上时,如何使节点标题提示显示。

drupal版本是6,views模块版本是6.x-2.12

i used views module genereate an articles title list, when i put the mouse hover on the article's title .three isn't a tip of the node title. the html code is this

 <div class="views-field-title">
 <span class="field-content">
  <a href="/resell.html">Resell</a>
  </span>
  </div>

there is no title= "", label in the

    <a> 

label,my views setting is add the title field and checked the l"ink this field to the node." am i right? how to make the node title tip show when i put the mouse hover on the article's title.

the drupal version is 6, views module version is 6.x-2.12

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

您可以使用“将此字段输出为链接”并将替代文本设置为 nid,而不是“将此字段链接到节点”。要执行此操作:

  1. 添加另一个 nid 字段
  2. 将字段拖到列表顶部并设置为排除显示
  3. 设置“将此字段输出为链接”,然后将路径链接到“node/[nid]”
  4. 然后将替代文本设置为 [title]

或者,如果确实需要标题属性,您可以手动将其添加到模板文件中。要查看要编辑的模板,请单击基本设置页面中的主题:信息。将 tpl 名称和代码复制到活动主题目录,然后添加标题属性。

Instead of "link this field to the node" you could use "output this field as a link" and set alt text to nid. To do this:

  1. Add another field of nid
  2. Drag field to top of list and set to exclude display
  3. Set "output this field as a link" and then Link path to "node/[nid]"
  4. Then set alt text to be [title]

Alternatively if the title attribute is really required you could manually add it to the template file. To see which template to edit click Theme: Information in the Basic Settings page. Copy the tpl name and code to your active themes directory and then add the title attribute.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文