Hallo,
ich hoffe, dass mein Thema hier richtig ist.
Mein Problem ist Folgendes: Ich habe mir in einem iframe einen Explorer anzeigen lassen.
Diesen will ich jetzt (mein Versuch mit js) anpassen lassen, wenn ich bestimmte links anklicke.
zb.
src by default soll sein H:\
Klicke auf einen link, der mir src auf zb. C:\ ändert.
Hier mein gekürzter Code:
<!DOCTYPE html>
<html>
<head>
<title>
intranet
</title>
<style type="text/css">
body{
background-color:#fafafa;
font-family: verdana, sans-serif;
font-style: normal;
font-weight: normal;
}
</style>
<script type="text/javascript">
function chemin (ouou){
document.getElementById("explorerx").src = ouou;
}
</script>
</head>
<body>
<hr color=#cccccc/>
<h1 style="font-weight: normal">intranet</h1>
<table align="center" cellspacing="60">
<tr>
<th> 5S </th>
<th> fds</th>
<th> Kanban </th>
<th> SMED </th>
<th> Wiki </th>
</tr>
<tr>
<td> <a href="javascript:chemin('C:\')"> <img src="5S.jpg" alt="5S" width="100" height="100" /></a></td>
<td> <img src="fds.jpg" alt="fds" width="100" height="100"> </td>
<td> <img src="kanban.png" alt="Kanban" width="100" height="100" /> </td>
<td> <img src="smed.png" alt="SMED" width="100" height="100" /> </td>
<td> <img src="wiki.png" alt="Wiki" width="100" height="100" /> </td>
</tr>
</table>
<iframe id="explorerx" src="H:\" style="width:90%; position:absolute; bottom: 10px; left:80px" name="f1" height="45%"> </iframe>
</body>
</html>
Ich hoffe ihr könnt mir helfen! ;)