簡體   English   中英

如何將CSS參數鏈接到javascript img?

[英]How can I link CSS parameters to a javascript img?

我在網頁上添加了帶有Javascript的圖像,但是我不知道如何修改或放置它。 如何將CSS鏈接到圖像,或者在沒有CSS的情況下可以對其進行修改?

<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <title>PingPongKép</title>
    <link rel="stylesheet" href="CSS/style.css">
</head>
<body>



 <script>

    function ilonaKep() {
  var img = new Image();
  img.src = 'img/ilona.jpg';
  document.body.appendChild(img);


}


    </script>

<p>Let's See the image

   <script>
    ilonaKep();
    </script>

   </p>


</body>
</html>

jQuery使這變得非常容易。 在圖像的style引號中將所需的任何樣式應用於圖像

<!doctype html>
<html>
    <head>
        <script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.1/jquery.min.js"></script>
    </head>

    <body>
        <p> Lets see the image: </p>

        <script>
            window.onload = function(){
                addImage();

                function addImage() {
                    $('body').append('<img style="any css styling in here" src="img/ilona.jpg">');
                }
            }
        </script>
    </body>
</html>

Javascript可以設置元素的屬性,

img.setAttribute("style", "background-color: red;");

https://www.w3schools.com/jsref/met_element_setattribute.asp

另外,如果您不想使用內聯CSS,則可以將CSS添加到CSS文件中,並使用jquery為圖像提供一個類

$("img").addClass("myImage");

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM