2
例在Dreamweaver CS6:Dreamweaver不顯示所有代碼提示
<script src="libs/Three.js"></script>
<script>
var scene = null,
function init(){
scene = new THREE.Scene();
scene. //a few code hints show up, not all
scene.rotatation.x += 0.01; //this one exists, but code hints doesn't find it
}
function move(){
scene. //no code hints show up
}
</script>
所以我的問題是:
- 在移動
(),原因代碼提示不顯示爲可能是因爲它們在init()中尚未初始化。有沒有辦法讓它們在move()中顯示?
爲什麼代碼提示不顯示scene.rotation?我如何讓它顯示所有變量/方法?
這不僅僅是Dreamweaver的一個問題,在我嘗試過的其他web構建器中也是如此。
這就是我所謂的代碼提示,如果你想知道:http://i.imgur.com/IDW2ljh.jpg