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
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:
- Add another field of nid
- Drag field to top of list and set to exclude display
- Set "output this field as a link" and then Link path to "node/[nid]"
- 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.
精彩评论