按照 JS Riddle 中的这些步骤来查看问题:
- 转到http://jsfiddle.net/MjrFC/1/
- 在结果区域中单击“测试”一词,这将打开第 1 点
- 您应该只能单击单词 test(point1) 和单词 hey(point2) 但如果单击显示 Hello 的 h1 标签,它会转到第 1 点。
下面的代码
<div class="contentb">
<h1>testing hello world</h1>
<div class="point1">test</div>
</div>
point1 = '<div class="contentb"> <h1>Hello</h1><div class="point1"> test</div><div class="point2">Hey</div><h1>World</h1></div>';
point2 = '<div class="contentb"> <div class="point1"> test</div></div>';
var className = "Broken";
$(document).on('click', '.contentb [class]', function () {
$(this).fadeTo(250, 0.25, function () {
className = this.className;
$('.contentb').html(window[className]);
$(this).fadeTo(250, 1.00);
});
});