作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我制作了一个使用 jQuery 的网页:http://benmccormack.com/demo/MichaelMassPsalm/Psalm16Mode5.html
当您将组合框中的选择从 Higher Key
更改为 Lower Key
时,所有音乐图像都应该将其源更改为代表较低的调号。这在 IE8 中运行良好,但在 Safari、Firefox 或 Chrome 中不起作用。
为什么不呢?
这是我正在使用的 jQuery 代码:
$(document).ready(function () {
$("#musicKey").change(function (event) {
if ($("#musicKey").val() * 1) {
$("img[src*='Low'").each(function (index) {
$(this).attr("src", $(this).attr("src").replace("Low", "High"));
});
}
else {
$("img[src*='High'").each(function (index) {
$(this).attr("src", $(this).attr("src").replace("High", "Low"));
});
}
});
});
最佳答案
您的 attribute-contains selectors 上缺少右括号:
$("img[src*='Low']")
//and...
$("img[src*='High']")
目前,那个无效的选择器没有找到任何东西,所以没有东西可以执行。
关于javascript - 为什么此页面上的 jQuery 适用于 Internet Explorer 8,但不适用于其他?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3066906/
我是一名优秀的程序员,十分优秀!