jQuery操作控制項

來源:互聯網
上載者:User

標籤:style   class   blog   code   color   os   

  在項目中添加前台控制項radio,操作兩個div的顯示和隱藏,其實是一個很簡單的問題,但是費了老大勁才完成,也就是jQuery操作控制項的一些基礎知識。方法有三種,簡單介紹:

  

  1、給元素設定style屬性: 

$("#divShareExamPage").attr("style", "display:none;");$("#divExamPage").attr("style", "display:block;");

 

  2、通過jQuery更改控制項css樣式: 

$("#divShareExamPage").css("display", "none");$("#divExamPage").css("display", "block");

 

  3、通過jQuery自身的show()、hide()方法: 

$("#divExamPage").show();$("#divShareExamPage").hide();

 

  

  操作前台控制項radio:

<td align ="right">                            <input type="radio" id="radioTeacherCreate" value ="個人試卷" name ="examPage" checked ="checked" onclick ="clickRadio()"  />個人試卷                            <input type="radio" id="radioShare" value ="共用試卷" name ="examPage" onclick ="clickRadio()" />共用試卷                            <input type="radio" id="radioSystem" value ="系統試卷" name ="examPage" onclick ="clickRadio()" />系統試卷</td>

   提取radio中的value值: 

var radioValue = $("input[name=‘examPage‘]:checked").val();

 

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.