简体   繁体   中英

Jquery Javascript only works on chrome and firefox, but not on IE

I have a HTML file which contains CSS and Jquery. When I tested it on chrome and Firefox, it works fine. But when I tested it on IE, only the CSS part work, the click function in JavaScript doesn't work at all.

$(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>

Solution:
classList.add() is not compatible in IE.
So change it to .attr("class", "classname") will solve the problem.

I'm going to guess it's the usage of classList which only has partial support, starting in IE10. What does your developer tools -> scripts in IE tell you, it should give you an error.

Further more, why are you using jquery AND native JS. I hate jquery personally, but a big reason to use it is for the cross browser support, you could just use the class methods in jquery.

As Shan suggested , your problem is your use of classList ; however, jQuery cannot add a class to an SVG . You can hack your way around this though by setting the class attribute on the <svg> .

You can see this in action by running the snippet below.

 $(document).ready(function(){ var prev; $('svg polygon').click(function(){ var current = this; $(this).attr("class", "mouseclick"); $('#suburb').val(current.id); if((typeof prev != 'undefined') && (current != prev)){ $(prev).attr("class", ""); } prev=current; }); $("#forwardbutton").click(function(){ document.getElementById("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> 

You must have a cached version of jQuery in your FF and Chrome cache, because I do not see you including jQuery anywhere on the page.

Add to page just below BODY tag:

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

EDIT:

I see you added it now. I just tested your code snippet with the jQuery lib loaded and it works in IE11.

PS - Cool effect!

Sorry, but I don't see the JQuery import <script src="//code.jquery.com/jquery-2.1.1.min.js"></script> .

Note JQuery 2.* doesn't work with IE 6/7/8

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM