Internet Explorer 9에서이 코드가 작동하지 않는 이유는 무엇입니까?Internet Explorer 9 및 jQuery
function calc() {
alert('aaa');
}
$('body').delegate('input', 'change', function(){
// In here, $(this) is the input that has changed
calc();
});
$('body').delegate('select', 'change', function(){
calc();
});
좀 더 구체적으로 기재 할 수 있습니까? 오류 메시지? – polarblau
당신은 무엇을 기대하고 있으며, 무엇을 경험하고 있습니까? – Sampson
아무것도 추가 기능은 ff와 크롬에서 작동하지 않습니다. ie9 – kusanagi