Jump to content
php.lv forumi
  • 0

visited uz h4, kurš ir iekš div taga


laucinieks

Question

Labvakar,

Tātad kods ir apmēram šāds -

<a href="links..." >

<div class="news">
<h4>Kaut kads teksts</h4>
<p>Apraksts</p>
<span>Datums</span>
</div>
</a>

 

Vai ir kāda iespēja uzlikt h4 tagam :visited statusu? Praktiski, tam visited statusam ir jāparādās, pēc klikšā uz div taga, ja tu uzklikšķini uz div lauka, tad h4 automātiski pievienojas :visited, un viņam nomainās krāsa, Provēju ar onclick, bet īsti nesanāca, varbūt variet izpalīdzēt?

L.

Link to comment
Share on other sites

8 answers to this question

Recommended Posts

  • 0

Ok, tad cik noprotu ir jāpārbauda vai a ar noteiktu id ir visited un ja ir tad apakšelementam h4 kurš ir iekš a ar tādu id pieliek klāt klasi, pareizi?

Īsti nekad neesmu sapratis, kā ar javascript var pārbaudīt kuru tieši no a id ir uzspiedis? Praktiski, domāju likt katram id šādas vērtības - "id".$id_no_datubazes un tad ar javascript izvilkt, bet varbūt variet parādīt kādu piemēru, kā īsti ir ar tiem id?

L.

Link to comment
Share on other sites

  • 0

Kurš elements īsti ir uzspiests (kā piemērs)?

 

Ar ID nav tāda jautājuma... ID ir unikāls!

 

Ar klasēm:

 

$('.some_class').click(function() {

   var clicked_element;

   clicked_element = $(this);

   console.log(clicked_element);

});

Link to comment
Share on other sites

  • 0

Nu jā, gribēju rakstīt class, mazliet saputrojās. Sapratu, paldies, mēģināšu tagad visu salikt kopā ;)!

Kas varētu būt te nepareizs?

 $('.text-box-a-href').click(function() {

var clicked_element;

clicked_element = $(this);

$(clicked_element).children('h4').addClass('visited');

});

Edited by laucinieks
Link to comment
Share on other sites

  • 0

Given a jQuery object that represents a set of DOM elements, the .children() method allows us to search through the immediate children of these elements in the DOM tree and construct a new jQuery object from the matching elements. The .find() and .children() methods are similar, except that the latter only travels a single level down the DOM tree.

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Answer this question...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

Loading...
×
×
  • Create New...