Variable dans script htm

Variable dans script htm - HTML/CSS - Programmation

Marsh Posté le 14-04-2015 à 14:20:54    

bonjour a tous , j ai un peu de mal a integrer une variable dans une page html
 
voila le bout de code
 
<script>
   $(document).ready(function() {
    $("#webcam" ).scriptcam({  
     chatWindow:'chatWindow',
     onError:onError,
     promptWillShow:promptWillShow,
     showMicrophoneErrors:false,
     onWebcamReady:onWebcamReady,
     connected:chatStarted,
     setVolume:setVolume,
     timeLeft:timeLeft,
     loginName:'pseudo1',
     chatRoom:'room1'
    });
</script>
 
je voudrais faire une page d authentification avant d appeler ma page .
 
donc mettre en variable le login et la room
 
quelqu un a une idée ? merci d avance

Reply

Marsh Posté le 14-04-2015 à 14:20:54   

Reply

Marsh Posté le 14-04-2015 à 14:40:57    

Tu peux utiliser prompt()


---------------
D3
Reply

Marsh Posté le 14-04-2015 à 14:56:25    

j ai bien l invite de votre pseudo mais ca m affiche pseudo il prend pas la variable ....
 
 
  <script>
  var pseudo = prompt("votre pseudo ?" );
   $(document).ready(function() {
    $("#webcam" ).scriptcam({  
     chatWindow:'chatWindow',
     onError:onError,
     promptWillShow:promptWillShow,
     showMicrophoneErrors:false,
     onWebcamReady:onWebcamReady,
     connected:chatStarted,
     setVolume:setVolume,
     timeLeft:timeLeft,
     loginName: ' ".$pseudo." ',
     chatRoom:'room1'
    });

Reply

Marsh Posté le 14-04-2015 à 15:00:49    

Code :
  1. <script>
  2.    $(document).ready(function() {
  3.     var pseudo= prompt("votre pseudo ?" );
  4.     $("#webcam" ).scriptcam({ 
  5.      chatWindow:'chatWindow',
  6.      onError:onError,
  7.      promptWillShow:promptWillShow,
  8.      showMicrophoneErrors:false,
  9.      onWebcamReady:onWebcamReady,
  10.      connected:chatStarted,
  11.      setVolume:setVolume,
  12.      timeLeft:timeLeft,
  13.      loginName:pseudo,
  14.      chatRoom:'room1'
  15.     });
  16. </script>


Message édité par mechkurt le 14-04-2015 à 15:01:07

---------------
D3
Reply

Marsh Posté le 14-04-2015 à 15:06:47    

merci ;)

Reply

Sujets relatifs:

Leave a Replay

Make sure you enter the(*)required information where indicate.HTML code is not allowed