Image with parameter - HTML

后端 未结 7 1925
半阙折子戏
半阙折子戏 2021-01-14 00:59

I do not know how to frame the question. And I do not know how the below tag is working...


This tag i

7条回答
  •  不要未来只要你来
    2021-01-14 01:42

    The value=23 only has an effect if the server uses it. The browser requests http://example.com/img.png?valud=23, so the server will see the parameter.

    For example, with PHP, if your use $_GET['value'], and that variable changes what image is sent, then the value=23 is needed.

    Parameters are often sent with images to specify a height or width, or to determine which image is loaded.

提交回复
热议问题