'web5.html'
This commit is contained in:
parent
946da74870
commit
37aae0a71e
40
05_html_jQuery/web5.html
Normal file
40
05_html_jQuery/web5.html
Normal file
@ -0,0 +1,40 @@
|
|||||||
|
<html>
|
||||||
|
|
||||||
|
<body>
|
||||||
|
<h1 id="headerId">I'm Header</h1>
|
||||||
|
|
||||||
|
<h1 class="headerClass secondClass thirdClass">I'm Header but with class</h1>
|
||||||
|
|
||||||
|
<table id="id1">
|
||||||
|
<tr>
|
||||||
|
<td class="d">d</td>
|
||||||
|
<td class="e">e</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
|
||||||
|
<table id="id2">
|
||||||
|
<tr>
|
||||||
|
<td class="d">ddddd</td>
|
||||||
|
<td class="e">eeee</td>
|
||||||
|
</tr>
|
||||||
|
</table>
|
||||||
|
</body>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
a=7;
|
||||||
|
alert(a);
|
||||||
|
a='uehfuerh';
|
||||||
|
alert(a);
|
||||||
|
alert($('#headerId').html());
|
||||||
|
|
||||||
|
$('#headerId').html('New header');
|
||||||
|
$('.headerClass').html('New header for class');
|
||||||
|
|
||||||
|
alert($('#headerId').html());
|
||||||
|
|
||||||
|
alert($('table#id2 .e').html());
|
||||||
|
|
||||||
|
$('table#id2').append('<tr><td>NEW</td> </tr>');
|
||||||
|
</script>
|
||||||
|
|
||||||
|
</html>
|
Loading…
Reference in New Issue
Block a user