<input type="button" onclick="setTimeout('alert(123);',100)" />
这条是OK的
但是如果alert(123)改为alert("123")这里要怎么写呢?
因为外面已经有了一个""了
<input type="button" onclick="setTimeout('alert("123");',100)" /> 这样不行
谢谢