一個擴展性的問題 大家?guī)兔纯囱?/h1>
怎么讓改變顏色或?qū)挾群蟮膕tyle ?通過隱藏按鈕隱藏 ?現(xiàn)在只能隱藏原版的內(nèi)容
怎么讓改變顏色或?qū)挾群蟮膕tyle ?通過隱藏按鈕隱藏 ?現(xiàn)在只能隱藏原版的內(nèi)容
怎么讓改變顏色或?qū)挾群蟮膕tyle ?通過隱藏按鈕隱藏 ?現(xiàn)在只能隱藏原版的內(nèi)容
2016-10-17
舉報
2016-10-17
? <!--當(dāng)點擊相應(yīng)按鈕,執(zhí)行相應(yīng)操作,為按鈕添加相應(yīng)事件-->
? ? <input type="button" value="改變顏色" onclick="coc()"> ?
? ? <input type="button" value="改變寬高" onclick="wah()">
? ? <input type="button" value="隱藏內(nèi)容" onclick="nen()">
? ? <input type="button" value="顯示內(nèi)容" onclick="bl()" >
? ? <input type="button" value="取消設(shè)置" onclick="res()">
? </form>
? <script type="text/javascript">
? var mycar = document.getElementById("txt")
//定義"改變顏色"的函數(shù)
function coc() {
? ? mycar.style.color="red"
? ? }
//定義"改變寬高"的函數(shù)
?function wah() {
? ? ?mycar.style.width="400px"
? ? ?mycar.style.height="300px"
?}
//定義"隱藏內(nèi)容"的函數(shù)
?function nen() {
? ? ?mycar.style.display="none"
?}
//定義"顯示內(nèi)容"的函數(shù)
function bl() {
? ? ?mycar.style.display="block"
?}
//定義"取消設(shè)置"的函數(shù)
function res() {
? ? ?mycar.style="none"
? ? ?}
?