我的水平滾動有問題。當我用鉻進行檢查時,我沒有看到錯誤。你能告訴我問題在哪裏,因爲我找不到它?水平滾動jquery
<html>
<head>
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.8.0/jquery.min.js" type="text/javascript"></script>
<script>
$('#right-button').click(function() {
$('#content').animate({
marginRight: marginRight -"200px"
}, "fast");
});
$('#left-button').click(function() {
$('#content').animate({
marginLeft: marginLeft +"200px"
}, "fast");
});
</script>
<style type="text/css">
#browser {
float: left;
width: 300px;
overflow: hidden;
white-space: nowrap;
}
</style>
</head>
<body>
<div id="browser">
<a href="#" id="left-button">BACK</a>
<div id="content">
This is the content of the text which should be scrolled.
</div>
<a href="#" id="right-button">NEXT</a>
</div>
</body>
改變,但仍然無法正常工作 – user1107922
還有一個(邏輯)的問題。看[示範](http://jsfiddle.net/9hubz/)。 –
謝謝!有用! – user1107922