通过javascript将鼠标悬停添加到链接
作者:互联网
简单快速的问题….
我有以下链接html:
<a href="http://www.site.com/" onm ouseover="" />
我有一个javascript函数,我想动态地输入一些onmouseover信息到该链接.所以,举个例子,如果这个javascript函数被调用,那么就这样说吧:
<a href="http://www.site.com/" onm ouseover="alert('howdy')" />
任何想法如何做到这一点?
解决方法:
添加名称属性并指定onmouseover
<a href="http://www.site.com/" onm ouseover="" name="xxx"/>
document.getelementsbyname('xxx').onmouseover = function() { alert('howdy') }
标签:javascript,hyperlink,onmouseover 来源: https://codeday.me/bug/20190526/1156973.html