admin管理员组文章数量:1350023
The following script below is not running in IE7 but works perfectly fine in IE 8 + 9 and ALL other browsers. Even putting in the alert("something");
does not work - I have another script that is working fine and that is running in IE 7 perfectly.
<script type="text/javascript" src=".js"></script>
Am I missing a DOCTYPE? Here is the script below;
var formPageTitle = $("div.hsRadarform td h3").text();
$('.AspNet-DataList td a').each(function (index) {
var listElementText = $(this).text();
var shade = "faint";
if(formPageTitle.toLowerCase() == listElementText.toLowerCase()) {
shade = "dark";
}
//adding the numbered circles here using jQuery
$(this).css({
'background-image': 'url(/assets/img/radarstep' + (index + 1) + shade + '.png)',
'background-repeat': 'no-repeat',
'height': '25px',
'width': '25px',
});
});
The following script below is not running in IE7 but works perfectly fine in IE 8 + 9 and ALL other browsers. Even putting in the alert("something");
does not work - I have another script that is working fine and that is running in IE 7 perfectly.
<script type="text/javascript" src="http://code.jquery./jquery-latest.js"></script>
Am I missing a DOCTYPE? Here is the script below;
var formPageTitle = $("div.hsRadarform td h3").text();
$('.AspNet-DataList td a').each(function (index) {
var listElementText = $(this).text();
var shade = "faint";
if(formPageTitle.toLowerCase() == listElementText.toLowerCase()) {
shade = "dark";
}
//adding the numbered circles here using jQuery
$(this).css({
'background-image': 'url(/assets/img/radarstep' + (index + 1) + shade + '.png)',
'background-repeat': 'no-repeat',
'height': '25px',
'width': '25px',
});
});
Share
Improve this question
edited Dec 2, 2011 at 13:47
Rory McCrossan
338k41 gold badges320 silver badges351 bronze badges
asked Dec 2, 2011 at 13:41
mjcodermjcoder
1,0119 gold badges27 silver badges46 bronze badges
2
- @Daniel A. White none being picked up in FF – mjcoder Commented Dec 2, 2011 at 13:47
- 2 @c-sharpnewbie see this -> stackoverflow./questions/7246618/… – Manse Commented Dec 2, 2011 at 13:54
1 Answer
Reset to default 14IE is very picky with trailing mas :
$(this).css({ 'background-image': 'url(/assets/img/radarstep' + (index + 1) + shade + '.png)',
'background-repeat': 'no-repeat',
'height': '25px',
'width': '25px',
});
Should be
$(this).css({ 'background-image': 'url(/assets/img/radarstep' + (index + 1) + shade + '.png)',
'background-repeat': 'no-repeat',
'height': '25px',
'width': '25px' // ma removed
});
本文标签: jQueryJavascript not running in IE7Stack Overflow
版权声明:本文标题:jQueryJavascript not running in IE7 - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743844294a2548840.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论