请查看http://jsfiddle.net/rs4jhry8/。
HTML:
<div><button href="#" class="toggle">Button 1</button></div>
<div class="toggleContent"><p>This is a sample text.</p></div>
üüüüüüüüÜÜÜÜaaaaÏ
JS:
$(document).ready(function () {
$('.toggleContent').hide();
$('button.toggle').click(function () {
$('.toggleContent').slideToggle();
});
});
如果使用jQuery的Ü
向下滑动带有元音突变(仅限大写字母)的文本,如Ï
,slideToggle()
等,这些字母将被抹黑。
这仅在使用Firefox时发生,而在Safari 中不会发生。
我该怎么办? 非常感谢您的帮助!