Jquery attr('src') undefined in IE 8 (works in FF)

前端 未结 7 1643
广开言路
广开言路 2021-01-18 07:22

This has gotten so far,that I will sum up what we found out:

  • Inside the event handler the attribute src cannot be read in IE8 (FF works fine), neither with

7条回答
  •  一生所求
    2021-01-18 07:45

    $(document).ready(function () {
        $("#imgReload").click(function () {
            $('#<%=imgCaptcha.ClientID %>').removeAttr("src");
            $('#<%=imgCaptcha.ClientID %>').attr("src", "Captcha.ashx");
        });
    });
    

提交回复
热议问题