Bonjour tout le monde .

Voici mon problème : J'ai une page appellé musique.html qui est situé dans un cadre en ligne (frame) et celle ci possède une liste déroulante avec des liens, je voudrais que lorsque je choisi une cathégorie dans la liste déroulante la page qui va s'ouvrir, s'ouvre dans ma frame. Pouvez vous m'aider ?

Ma page contient aussi un lecteur Deezer.

Voici Le code de ma page :

Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
<html>
 
<head>
<meta http-equiv="Content-Type" content="text/html; charset=windows-1252">
<title>Nouvelle page 1</title>
<SCRIPT> 
function Lien() {
i = document.Choix.Liste.selectedIndex;
if (i == 0) return;
url = document.Choix.Liste.options.value;
parent.location.href = url;
}
</SCRIPT></head>
 
<body STYLE="background-color:transparent" link="#FF6600" vlink="#FF6600" alink="#FF6600">
 
<p align="center">&nbsp;</p>
<p align="center"><b><font face="Verdana" size="2" color="#FF6600">Thriller</font></b></p>
<p align="center">&nbsp;<object width="300" height="250"><param name="movie" value="http://www.deezer.com/embed/player?pid=36175282&ap=0&ln=fr&sl=1"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.deezer.com/embed/player?pid=36175282&ap=0&ln=fr&sl=1" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="450" height="375"></embed></object>
<FORM NAME="Choix">
<p align="center"><font color="#FF6600" face="Verdana">
<SELECT NAME="Liste" onChange="Lien()" style="font-weight: bold; font-family: Verdana; font-size: 8pt; color: #FF6600; background-color: transparent" size="1">
<OPTION VALUE="">Musique
<OPTION VALUE="1.htm">Ain't No Sunshine - In Our Small Way
<OPTION VALUE="2.htm">Anthology : The Best Of Michael Jackson
<OPTION VALUE="3.htm">Bad
<OPTION VALUE="4.htm">Bad - Dangerous
<OPTION VALUE="5.htm">Ben
<OPTION VALUE="6.htm">Ben - You Can Cry My Shoulder
<OPTION VALUE="7.htm">Blood On The Dance Floor
<OPTION VALUE="8.htm">Colour Collection
<OPTION VALUE="9.htm">Dangerous
<OPTION VALUE="10.htm">Forever Michael
<OPTION VALUE="11.htm">Go To Be There
<OPTION VALUE="12.htm">Hello World - The Motown Solo Collection
<OPTION VALUE="13.htm">History
<OPTION VALUE="14.htm">Invincible
<OPTION VALUE="15.htm">King Of Pop
<OPTION VALUE="16.htm">Love Songs
<OPTION VALUE="17.htm">Michael Jackson Greatest Hits History Volume I
<OPTION VALUE="18.htm">Motown A Cappella
<OPTION VALUE="19.htm">Music & Me
<OPTION VALUE="20.htm">Off The Wall
<OPTION VALUE="21.htm">One More Chance
<OPTION VALUE="22.htm">Remix Suite I
<OPTION VALUE="23.htm">Remix Suite II
<OPTION VALUE="24.htm">Remix Suite III
<OPTION VALUE="25.htm">The Collection
<OPTION VALUE="26.htm">The Definitive Collection
<OPTION VALUE="27.htm">The Essential Michael Jackson
<OPTION VALUE="28.htm">The Motown 50 Mixes
<OPTION VALUE="29.htm">The Mixe Suite
<OPTION VALUE="30.htm">The Universal Masters Collection
<OPTION VALUE="31.htm">Thriller
<OPTION VALUE="32.htm">Thriller 25 deluxe Edition
<OPTION VALUE="33.htm">This Is It
<OPTION VALUE="34.htm">Visionary Remixes
 
</font></p>
 
</FORM>
<p>
 
</p>
 
</body>
 
</html>
Pour voir a quoi ressemble la page aller sur mon site :

http://kevinbelin.free.fr/michael-jackson/

Puis musique et choisissez n'importe quelle album


Merci de votre patience.