2016-06-28 14 views
1

Also, ich versuche, eine Website zu machen, wo ich ein Bild haben kann, das sich täglich ändert. Ich brauche Hilfe, die Bildquelle auf die Variable imageurl einzustellen. Außerdem ist es so, dass die Variable imageurl global ist.Website mit veränderbarer Bildquelle

Lassen Sie mich klären, ich will es so, dass es die Variable imageurl auf einen Link setzt, der durch eine Eingabeaufforderung festgelegt wird, dann legt das Bild auf imageurl fest.

<!DOCTYPE html> 
<html> 

<head> 
    <div align="center"> 
     <meta http-equiv="content-type" content="text/html; charset=utf-8" /> 
     <title>picture of the day</title> 
     <h1>Jere's picture of the day</h1> 
     <link href="style.css" rel="stylesheet" type="text/css"> 
    </div> 
</head> 

<body> 
    <style> 
     div { 
      background-color: #8000ff; 
      color: #ffffff; 
      padding: 20px; 
     } 
    </style> 
    <script src="code.js" type="text/javascript" charset="utf-8"></script> 

    <script> 
     function myFunction() { 
      isitjere = prompt("Password?"); 
      if (isitjere === "thedog") 
       alert("password:" + isitjere + " " + "has been accepted"); 
      editimage = prompt("do you want to change the image?(type yes or no)"); 
      if (editimage === "yes") 
       imageurl = prompt("paste the image url(if you dont have a url for it you can upload it and paste the upload link)"); 
     } 
    </script> 
    <button onclick="myFunction()">edit</button> 
    <img src=imageurl> 
    </div> 
</body> 
</html> 
+0

Sie tatsächlich haben Sie eine Java-Code noch nicht geschrieben? –

+0

Java oder Javascript? –

+0

unter dem Body-Tag. es beginnt bei "function myFunction()" –

Antwort

0

nicht wissen, was Ihre Absicht ist .. aber hier ein Code-Schnipsel arbeiten :) (http://codepen.io/f7o/pen/VjpjOW)

<head> 

</head> 

<body> 
    <script> 
    function myFunction() { 
     var isitjere = prompt("Password?"); 
       if (isitjere === "thedog") 
        alert("password:" + isitjere + " " + "has been accepted"); 
       var editimage = prompt("do you want to change the image?(type yes or no)"); 
       if (editimage === "yes") 
        var imageurl = prompt("paste the image url(if you dont have a url for it you can upload it and paste the upload link)"); 
     console.log(imageurl); 
    $("#pic").attr('src',imageurl); 
    } 
    </script> 
    <button onclick="myFunction()">edit</button> 

    <div align="center"> 
    <title>picture of the day</title> 
    <h1>Jere's picture of the day</h1> 
    </div> 
    <img id="pic" src="https://www.google.com/images/nav_logo242.png"> 

</body> 

</html> 
Verwandte Themen