Inlocuire date cu javascript in src iframe
Scris: Dum Iun 24, 2012
Buna am o mica problema ... am in site scrise coduri iframe gen :
Aparent nici o problema dar vreau sa adaug dupa fiecare &hd=1 inca o variabila ci anume &autoplay=true , am tot cautat de ceva vreme pe net si am gasit ca se pot inlocui cuvinte cu javascript (de asta am si nevoie de js nu php) dar nu stiu cum sa fac sa schimbe in pagina, nu doar in cod js gen cel de jos .
Foloseste metoda JavaScript replace() si mam gandit ca e buna pentru a inlocui hd=1 cu autoplay=true
va rog ajutor multumesc
Cod: Selectaţi tot
<iframe src="http://vk.com/video_ext.php?oid=97788243&id=162602594&hash=6c319dd471bbeabf&hd=1" width="607" height="360" frameborder="0"></iframe>
Foloseste metoda JavaScript replace() si mam gandit ca e buna pentru a inlocui hd=1 cu autoplay=true
Cod: Selectaţi tot
<p>Click the button to replace "Microsoft" with "W3Schools" in the paragraph below:</p>
<p id="demo">Visit Microsoft!</p>
<button onclick="myFunction()">Try it</button>
<script type="text/javascript">
function myFunction(){
var str=document.getElementById("demo").innerHTML;
var n=str.replace("Microsoft","W3Schools");
document.getElementById("demo").innerHTML=n;
}
</script>