이 같은이라고인 stopPropagation는 온 클릭 중첩 된 목록에서 작동하지
function bimageswap (step) {
step.stopPropagation;
realstep = parseInt(step) + 1;
nextsteps = realstep + 1;
for (iss = nextsteps;iss <= 5; iss++) {
document.getElementById("step" + iss).className = 'step' + iss;
alert(iss);
}
document.getElementById("step" + realstep).className = 'step' + realstep + 'a';
/*$("#step2").css('background-image', 'images/adtl_prodimg/discs/step1_.png');*/
return false;
}
.. 내가 중첩 된 목록에서 상향 링크의 클릭에 이미지를 교체하기 위해 다음과 같은 기능을 가지고 있지만 목록을 버블 링 중지 나던 이 :
내가 다른 답변에서 발견 한 것이기 때문에 반환을 시도했지만 아직 작동하지 않습니다. 어떤 도움을 주셔서 감사합니다!
step.stopPropagation; - 함수 이름 다음에 또는 코드에서만 빠진 적이 있습니까? –