2015-01-20 217 views
3

我有一个包含CSS和Jquery的HTML文件。当我在Chrome和Firefox上测试它时,它工作正常。但是当我在IE上测试它时,只有CSS部分工作,JavaScript中的点击功能根本不起作用。Jquery Javascript只适用于Chrome和Firefox,但不适用于IE

$(document).ready(function(){ 

    var prev;  
    $('svg polygon').click(function(){ 
     var current = this; 
     this.classList.add('mouseclick'); 
     $('#suburb').val(current.id); 


     if((typeof prev != 'undefined') && (current != prev)){ 
      prev.classList.remove("mouseclick"); 
     } 


     prev=current; 
    }); 

    $("#forwardbutton").click(function(){ 
     $("#ctlform").submit(); 
    }); 

}); 
svg polygon{ 
    fill:none; 
    stroke: white; 
    stroke-width:1px;  
} 

svg polygon:hover{ 
    fill: rgba(255, 255, 0, 0.3); 
} 

svg polygon.mouseclick{ 
    fill: rgba(255, 0, 4, 0.3);  !important; 
    stroke-width: 1px; 
    stroke: rgb(255, 0, 4); 
} 
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> 

<form role="form" id="ctlform"> 
<div> 
<svg height="630" width="840"> 
    <image width="840" height="630" xlink:href="http://choicestudies.com/img/IGA/base.png" /> 
    <polygon points="536,379 535,377 536,374 539,368 541,367 541,363 539,363 540,359 546,362 557,362 559,358 559,359 565,358 568,359 567,363 563,368 564,382 562,386 558,386 554,390 554,392 552,392 551,395 547,397 547,399 545,398 548,392 548,386 546,385 537,386 536,379" id="Ashfield"> 
     <title>Ashfield</title> 
    </polygon> 
    <polygon points="437,360 438,358, 437,345 441,337 441,331 439,329 439,326 441,320 452,318 455,317 457,314 468,312 472,304 483,304 483,306 485,307 488,307 493,302 499,304 493,311 493,315 496,316 497,318 496,321 497,324 501,325 501,334 496,339 490,342 486,340 482,341 480,347 480,349 482,349 479,350 479,353 486,363 484,364 482,371 467,377 451,378 447,373 445,373 443,370 441,370 439,367 436,366 437,360" id="Auburn"/> 


    <polygon points="403,430 405,428 405,425 399,418 399,405 402,405 404,403 404,400 397,394 397,390 393,389 393,383 394,382 399,383 402,372 405,369 406,365 408,364 413,353 421,360 423,360 436,370 438,370 438,372 443,374 451,381 468,380 478,375 480,375 481,380 485,380 486,378 489,377 485,402 489,404 494,404 488,406 486,413 478,422 468,425 467,430 461,431 461,443 462,449 464,450 464,469 467,472 468,476 462,477 456,481 443,483 441,487 438,489 438,491 430,490 430,486 426,486 422,490 420,486 424,483 424,481 417,475 417,473 414,470 406,469 406,464 408,463 407,457 404,455 399,455 395,446 391,445 394,442 393,432 395,432 397,429 399,431 403,430" id="Bankstown"/> 

</svg> 
</div> 

<div> 
    <p>Suburb Name:</p><br /> 
    <input type="text" id="suburb" name="sub"/> 

</div> 
</form> 

解决方案:
classList.add()不是在IE兼容。
因此,将它改为.attr(“class”,“classname”)将解决问题。

+1

可能this.classList.add,使用$(本).addClass代替 – dandavis 2015-01-20 23:45:24

+0

是否事件火?如果您在点击处理程序的第一行放置了“alert”,会发生什么情况? – 2015-01-20 23:46:26

+2

尝试使用IE开发人员工具进行调试。我认为@dandavis所评论的可能是问题。 – owaism 2015-01-20 23:48:13

回答

1

由于Shan suggested,你的问题是你的classList使用;然而,jQuery cannot add a class to an SVG。你可以通过在<svg>上设置class属性来解决这个问题。

您可以通过运行下面的代码片段来看到这一点。

$(document).ready(function(){ 
 
\t 
 
\t var prev;  
 
\t $('svg polygon').click(function(){ 
 
\t \t var current = this; 
 
\t \t $(this).attr("class", "mouseclick"); 
 
\t \t $('#suburb').val(current.id); 
 

 
\t \t if((typeof prev != 'undefined') && (current != prev)){ 
 
\t \t \t $(prev).attr("class", ""); 
 
\t \t } 
 
\t \t \t \t  
 
\t \t prev=current; 
 
\t }); 
 

 
\t $("#forwardbutton").click(function(){ 
 
\t \t document.getElementById("ctlform").submit(); 
 
\t }); 
 

 
});
svg polygon{ 
 
\t fill:none; 
 
\t stroke: white; 
 
\t stroke-width:1px;  
 
} 
 

 
svg polygon:hover{ 
 
\t fill: rgba(255, 255, 0, 0.3); 
 
} 
 

 
svg polygon.mouseclick{ 
 
\t fill: rgba(255, 0, 4, 0.3); !important; 
 
\t stroke-width: 1px; 
 
\t stroke: rgb(255, 0, 4); 
 
}
<script src="https://ajax.googleapis.com/ajax/libs/jquery/1.11.1/jquery.min.js"></script> 
 

 
<form role="form" id="ctlform"> 
 
<div> 
 
<svg height="630" width="840"> 
 
<image width="840" height="630" xlink:href="http://choicestudies.com/img/IGA/base.png" /> 
 
<polygon points="536,379 535,377 536,374 539,368 541,367 541,363 539,363 540,359 546,362 557,362 559,358 559,359 565,358 568,359 567,363 563,368 564,382 562,386 558,386 554,390 554,392 552,392 551,395 547,397 547,399 545,398 548,392 548,386 546,385 537,386 536,379" id="Ashfield"> 
 
    <title>Ashfield</title> 
 
</polygon> 
 
<polygon points="437,360 438,358, 437,345 441,337 441,331 439,329 439,326 441,320 452,318 455,317 457,314 468,312 472,304 483,304 483,306 485,307 488,307 493,302 499,304 493,311 493,315 496,316 497,318 496,321 497,324 501,325 501,334 496,339 490,342 486,340 482,341 480,347 480,349 482,349 479,350 479,353 486,363 484,364 482,371 467,377 451,378 447,373 445,373 443,370 441,370 439,367 436,366 437,360" id="Auburn"/> 
 

 

 
<polygon points="403,430 405,428 405,425 399,418 399,405 402,405 404,403 404,400 397,394 397,390 393,389 393,383 394,382 399,383 402,372 405,369 406,365 408,364 413,353 421,360 423,360 436,370 438,370 438,372 443,374 451,381 468,380 478,375 480,375 481,380 485,380 486,378 489,377 485,402 489,404 494,404 488,406 486,413 478,422 468,425 467,430 461,431 461,443 462,449 464,450 464,469 467,472 468,476 462,477 456,481 443,483 441,487 438,489 438,491 430,490 430,486 426,486 422,490 420,486 424,483 424,481 417,475 417,473 414,470 406,469 406,464 408,463 407,457 404,455 399,455 395,446 391,445 394,442 393,432 395,432 397,429 399,431 403,430" id="Bankstown"/> 
 

 
</svg> 
 
</div> 
 

 
<div> 
 
<p>Suburb Name:</p><br /> 
 
<input type="text" id="suburb" name="sub"/> 
 

 
</div> 
 
</form>

+0

wierd!我没有;不知道你不能用jquery添加一个类到一个svg。谢谢! – 2015-01-21 01:01:08

0

您的FF和Chrome缓存中必须有jQuery的缓存版本,因为我没有看到您在页面上的任何位置包含jQuery。

添加到页面下方BODY标签:

<script src="//code.jquery.com/jquery-1.11.2.min.js"></script> 

编辑:

我看你现在添加它。我刚刚测试了你的代码片段,加载了jQuery lib,它在IE11中工作。

PS - 很酷的效果!

1

我猜想这是classList的使用,只有部分支持,从IE10开始。你的开发工具 - > IE中的脚本告诉你,它应该给你一个错误。

此外,为什么你使用jQuery和本地JS。我个人讨厌jquery,但使用它的一个重要原因是支持跨浏览器,你可以在jquery中使用类方法。

0

对不起,但我没有看到JQuery导入<script src="//code.jquery.com/jquery-2.1.1.min.js"></script>

注意的JQuery 2 *不能与IE浏览器6/7/8

+0

请链接您的来源。 – fearphage 2015-01-21 00:46:23

相关问题