Jquery選取器中使用變數實現動態選擇例子_jquery

來源:互聯網
上載者:User

例子一:

<table>  <tr>    <th>使用者名稱</th>    <th>狀態</th>  <tr>  <tr>    <td>張三</td>    <td data-uid="10000">正常</td>  <tr>  <tr>    <td>李四</td>    <td data-uid="10001">凍結</td>  <tr>  <tr>    <td>王二麻子</td>    <td data-uid=10002>凍結</td>  <tr></table><script type="text/javascript">$(document).ready(function(){  var uid = 1001;  $("td[data-uid = "+ uid +"]").html('正常');}</script>

例子二:

<script type="text/javascript"> $(function(){  alert(123);  var v=4;  var test=$("input[type='radio'][value='"+v+"']");//直接拼接字串就可以了  console.info(test);  var testValue=test.attr({"checked":true});  console.info(testValue); });  </script>  <body>  This is my JSP page. <br>  <table> <tr> <td>性別:</td> <td>  <input name="sex" type="radio" value="0"/>男 0  <input name="sex" type="radio" value="1"/>女 1  <input name="sex" type="radio" value="2"/>女 2  <input name="sex" type="radio" value="3"/>女 3  <input name="sex" type="radio" value="4"/>女 4 </td> </tr>  </table> </body>

例子三、jQuery中選取器參數使用變數應該注意的問題

這是原來的代碼

var li_index = $(this).index();var $content_index = li_index + 2;var $content_progress = $(“div.content:eq(” + $content_index + “)”);var $newavalue = $(this).find(“a”).attr(“name”);var $resource = $(this).find(“a”).html().replace(“首頁”,$newavalue);var $afterresource = $resource.replace($newavalue,””);var $afterresource = $newavalue + $afterresource.replace(“首頁”,$newavalue);

實現的是關鍵詞替換,不過到第三行時候不執行了,調試啊,替換啊,都不行。 從早上到剛才一直在各種群裡面發問,終於 …… 俺們大本營 的Lomu大神一陣見血:

你的寫法不對

要串連符

$(“div.content:nth-child($content_index)”);

改為

$(“div.content:nth-child(” + $content_index + “)”);

關鍵是外面有引號

有引號被當字串處理了

說真的現在感覺,有些基礎的東西出錯,光靠自己調試根本找不出問題所在。比如剛才那個 + 號,我看書就沒見過。出現這種錯誤百度也不知道什麼關鍵詞。真不知道  選取器 裡面用變數 還要用到+號,那個《鋒利的jQuery 》也沒有明確的說 選取器 裡面用變數 還要用到+號,包括我們的w3cschool。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.