Onmouseover不适用于Django - Python

时间:2017-03-08 18:57:24

标签: python html django

我将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文件上传到浏览器,那一切都有效。

1 个答案:

答案 0 :(得分:0)

从您对问题的评论来看,这似乎是一个引用问题。

试试这个:

onmouseover="this.src='{% static 'res/ico/instagram_h.png' %}'"