//include jQuery file
<script type="text/javascript" src="jquery.js"></script>
<script>
function go_to(id_number){
var obj=jQuery('div.mydiv ul li:nth-child('+id_number+') a');
alert(obj.html())
}
go_to(3);
</script>
//include jQuery file
<script type="text/javascript" src="jquery.js"></script>
<script>
function go_to(id_number){
var obj=jQuery('div.mydiv ul li:nth-child('+id_number+') a');
alert(obj.html())
}
go_to(3);
</script>
0 Comment:
Post a Comment