限制300字,分了三段發的
改變部分-3 ? 其中最坑的就是隱藏和顯示,函數名要用hidetext()和showtext(),在這里卡了將近半小時 //定義"隱藏內容"的函數 ? ?function showtext(){ ? ? ? ?txt.style.display="block"; ? ?} //定義"顯示內容"的函數 ? ?function cancel(){ ? ? ? ?var sure=confirm("確定要取消設置嗎?"); ? ? ? ?if(sure="true"){ ? ? ? ? ? ?txt.removeAttribute("style"); ? ? ? ?} ? ?}
2016-03-23
? <script type="text/javascript">
? var char=document.getElementById('txt');
//定義"改變顏色"的函數
function changeColor(){
? ? char.style.color="red";
}
//定義"改變寬高"的函數
function changeWH(){
? ? char.style.width="300px";
? ? char.style.height="500px";
}
//定義"隱藏內容"的函數
function hiddenCon(){
? ? char.style.display="none";
}
//定義"顯示內容"的函數
function showCon(){
? ? char.style.display="block";
}
//定義"取消設置"的函數
function clearSet(){
? ? var onClearSet = confirm("確定要取消之前設置嗎?");
? ? if (onClearSet=true){
? ? ? ? char.style.cssText="";//也可用char.style.removeAttribute("style")來清除樣式
? ? ? ? //char.style.removeAttribute("style");
? ? }
}
2016-03-23
親的函數沒有寫錯啊,沒明白問題出在哪?