官方文件上写着The method takes a callback as an argument to be invoked before the repaint. ()
我在下面编写了一个简单的代码:
<html>
<div style="width: 10px; height: 10px; background: #999"/>
<script type="text/javascript">
let count = 0;
function step() {
我在处理另一个问题时发现了这个bug。列出的JavaScript命令的顺序与它们在Safari中的执行顺序不同:
示例:
alert('here');
document.write('This is the hidden message.');
alert('You should be seeing the hidden message by now.');
在我的浏览器中,alerts在document.write()语句之前执行。我在使用Safari版本5.17、6.0和6.0.2的两个不同的Mac上见过这个错误,但我还没有确认其他人已经看到
我的环境:
VCL application developped on RadStudio XE4 on Windows 7 pro (32bit).
tested on Windows 7 pro (32bit).
我发现了使用RadStudio XE4制作的软件的一些奇怪的行为。放置在TLabel上的TPanel字符串没有正确更新。
最简单的例子就是图片。在这个软件中,TLabel每秒钟显示一次当前时间。如图所示,除非我将其他软件的窗口重叠在TPanel组件上,否则不更新较低的部分(在TPanel上)。
这是RadStudio的正常行为吗?还是RadStudio中的一些bug?