鼠标悬停调用多个脚本

发布于 2024-12-12 08:21:31 字数 188 浏览 2 评论 0原文

我的网站使用了两种不同的脚本。一种适用于现代浏览器,另一种适用于 IE。

两者都使用鼠标悬停。我如何调用这两个脚本?我的代码是:

onmouseover="mouseoversound.playclip(); playSound(0);" 

这不起作用,但我不确定如何调用两者。

I am using 2 different scripts for a site of mine. One for modern browsers and one for IE.

Both use mouseover. How do I call both scripts? My code is:

onmouseover="mouseoversound.playclip(); playSound(0);" 

That does not work yet I am unsure how to call both.

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

习惯成性 2024-12-19 08:21:31

你可以像这样检测IE,

onmouseover="Play()"

In Play功能检测浏览器( http://www.javascriptkit. com/javatutors/navigator.shtml )并调用相关函数,

function Play(){
    if (navigator.appName == 'Microsoft Internet Explorer'){
       //your function for IE
    }else{
    // your function for other browsers
    }
}

you can detect the IE like this,

onmouseover="Play()"

In Play function detect the browser ( http://www.javascriptkit.com/javatutors/navigator.shtml ) and call relevant function,

function Play(){
    if (navigator.appName == 'Microsoft Internet Explorer'){
       //your function for IE
    }else{
    // your function for other browsers
    }
}
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文