Advertisement
Guest User

46

a guest
Feb 24th, 2020
97
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.37 KB | None | 0 0
  1. var choice = prompt("1 = Wyświetl jakieś zdjęcie \n 2 = Wyświetl jakiś tekst");
  2. if(choice == "1"){
  3. document.write("<img src=\"1.jpg\"/>");
  4. }else if(choice =="2"){
  5. var text = prompt("Jaki tekts chcesz wyświetlić: ");
  6. document.write(text);
  7. }else{
  8. document.write("Eluwina ziomeczku. Dokonałeś złego wyboru. Odśwież se stronkę i wybierz ponownie");
  9. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement