0
我在div內有一個span,儘管我可以垂直滾動,但是沒有滾動指示符顯示,就像我在滾動時通常在UIWebView中看到的那樣。任何線索爲什麼?滾動條不顯示在UIWebView中
這是制定在JavaScript
$(".contentArea").append('<div style="width=300px; height:520px;
overflow-x:visible; overflow-y: scroll; position: relative; top: 0px;
left: 15px;"><span class="description">' + $(this).find("Description").text()
+ '</span></div>');
CSS:
#contentArea{
position:relative;
width:600px;
height:768px;
font-size: 13px;
line-height:20px;
}
span.description {
line-height:17px;
}
添加此沒有效果。它在我webview的loadRequest下面的viewDidLoad中。 – VagueExplanation