我将html复制到django,就像所有设置,有图片等等。但这里有onmouseover问题 - 不起作用。
试了一下 -
onmouseover="this.src={% static 'res/ico/instagram_h.png'%}"
onmouseover="this.src="{% static 'res/ico/instagram_h.png'%}"
onmouseover= "{% static 'res/ico/instagram_h.png'%}"
还有更多选项,但图片没有变化,但如果你只是将html文件上传到浏览器,那一切都有效。
答案 0 :(得分:0)
从您对问题的评论来看,这似乎是一个引用问题。
试试这个:
onmouseover="this.src='{% static 'res/ico/instagram_h.png' %}'"