|< 1 2 3 >| | 21 Einträge, 3 Seiten |
<a href="#" id="richtig">...</a>
$(this.id) = 'neueID'
1
2
3
4
5
<ul>
<li id="li1"><a href="#">...</a></li>
<li id="li2"><a href="#">...</a></li>
<li id="li3"><a href="#">...</a></li>
</ul>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
$("#2 a").click(function() {
var parent_id = this.parentNode.id;
$.ajax({
type: 'GET',
url: 'execute.py',
dataType: 'html',
global: 'false',
success: function(html) {
/* li2 in neue_id ändern*/
$(parent_id) = 'neue_id';
/* Probe machen*/
alert(this.parentNode.id);
}
});
});
Fehler: invalid assignment left-hand side
1
2
3
4
5
6
7
8
9
10
11
12
13
14
$("#alte_id a").click(function() {
$('#alte_id').attr({id: 'neue_id'});
/* Attribut id von neuer ID anzeigen:*/
alert('Neue ID: '+$('#neue_id').attr('id'));
/* Ergebnis: neue_id */
/* neue_id unsichtbar machen:*/
$('#neue_id').hide();
});
$("#neue_id a").click(function() {
alert("Funktioniert!");
});
[Object].id = 'neue_id';
|< 1 2 3 >| | 21 Einträge, 3 Seiten |