重複の可能性:
Webkit の予期しないトークン ILLEGAL
私はこれを見てきましたが、問題は見られません.jfiddleで動作します-サイトではありません!
<script type="text/javascript">
var fixed = false;
$(document).scroll(function() {
if( $(this).scrollTop() > 200 ) {
if( !fixed ) {
fixed = true;
$('#menu-scroll').css({position:'fixed', display:'block'});
}
} else {
if( fixed ) {
fixed = false;
$('#menu-scroll').css({display:'none'});
}
}
});
</script>
サイトへのリンクはhttp://mtro.es/7です