要将图像设置为列表项中的标记,请使用JavaScript中的listStyleImage属性。
您可以尝试运行以下代码以使用JavaScript将图像设置为列表项标记-
<!DOCTYPE html> <html> <body> <ol id="myID"> <li>One</li> <li>Two</li> </ol> <button type="button" onclick="display()">Update list image</button> <script> function display() { document.getElementById("myID").style.listStyleImage = "url('http://nhooo.com/css/images/bullet.gif')"; } </script> </body> </html>