請問JS中函數的名稱有規定的嗎?為什么我的這段代碼的結果是沒有反應?哪里錯了?
?</div>
? <form>
? <!--當點擊相應按鈕,執行相應操作,為按鈕添加相應事件-->
? ? <input type="button" value="改變顏色" onClick="changecolor()"> ?
? ? <input type="button" value="改變寬高" onClick="changesize()" >
? ? <input type="button" value="隱藏內容" onClick="hidetext()">
? ? <input type="button" value="顯示內容" onClick="showtext()">
? ? <input type="button" value="取消設置" onClick="rac()">
? </form>
? <script type="text/javascript">
//定義"改變顏色"的函數
function changecolor(){
var obj=document.getElementById("txt");
obj.style.color="navy";
obj.style.backgroundColor="pink";
}
//定義"改變寬高"的函數
function changesize(){
var obj=document.getElementById("txt"); ?
obj.style.width="350px";
obj.style.height="300px";
}
//定義"隱藏內容"的函數
function hidetext(){
obj.style.display="none";
}
//定義"顯示內容"的函數
function showtext(){
obj.style.display="block";
}
//定義"取消設置"的函數
function rac(){
var mymessage=confirm("是否取消設置?");
if(mymessage==true)
{obj.style.color="black";
?obj.style.backgroundColor="white";
?obj.style.width="600px";
?obj.style.height="400px";
}
}
? </script>
</body>
</html>
2016-04-06
?我這樣寫 ?和你的沒什么不同 ? ,但是我的可以運行,你看看。
<script type="text/javascript">
? var obj=document.getElementById("txt");
function changecolor(){
obj.style.color="red";
obj.style.backgroundColor="pink";
}
function changesize(){
obj.style.width="350px";
obj.style.height="300px";
}
function hidetext(){
obj.style.display="none";
}
function showtext(){
obj.style.display="block";
}
function rac(){
? ? var s=confirm("是否取消設置?");
? ? if(s==true){
?obj.style.color="black";
?obj.style.backgroundColor="white";
?obj.style.width="600px";
?obj.style.height="400px";
? ? }
}
? </script>
2016-04-06
我給你找到了 ? 快謝謝我吧 ?嘿嘿 ?
2016-04-06
var mymessage=confirm("是否取消設置?");
你這句最后的分號用的輸入法輸入的 ? 后面有空格 ? ? ?你用英文試試就好了。
2016-04-06
var obj=document.getElementById("txt");每個函數都要這句,它是局部變量