JQuery給select添加/刪除節點的實現代碼
648
2024-03-07
本文實例講述了jquery+json實現動態商品內容展示的方法。分享給大家供大家參考,具體如下:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="zh" lang="zh" dir="ltr"> <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <mce:script type="text/javascript" src="http://www.gimoo.net/t/1903/jquery-1.4.4.min.js" mce_src="jquery-1.4.4.min.js"></mce:script> <title>Example | xHTML1.0</title> </head> <mce:style>< div{width:50px;height:50px;float:left;margin:10px; text-align:center;} .a{font-size:50px;float:left; cursor:pointer;} .b{font-size:50px;background-color:yellow;float:left; cursor:pointer;} .border{border:2px solid;} .bb{} --></mce:style><style mce_bogus="1">div{width:50px;height:50px;float:left;margin:10px; text-align:center;} .a{font-size:50px;float:left; cursor:pointer;} .b{font-size:50px;background-color:yellow;float:left; cursor:pointer;} .border{border:2px solid;} .bb{}</style> <mce:script type="text/javascript">< $(function () { var _json = {"red":{"small":"10","middle":"15","large":"20","max_large":"25"},"blue":{"small":"33","middle":"35","large":"9","max_large":"30"},"green":{"small":"34","middle":"30","large":"19","max_large":"3"},"orange":{"small":"9","middle":"15","large":"29","max_large":"18"}}; var _color_value; var _size_value; var _store_value; $("#select_color div").click(function () { $("#select_color div").attr("class","/bb"); $(this).attr("class","border"); _color_value = $(this).attr("date-value"); change_span_value() }); $("#select_size div").click(function () { $("#select_size div").attr("class","a"); $(this).attr("class","b"); _size_value = $(this).attr("date-value"); change_span_value() }); function change_span_value() { var _value = _json[_color_value][_size_value]; if (_value != undefined) { $("#span_store").text(_value+"件"); } } }); // --></mce:script> <body> <div style="width:100%;margin:10px;" id="select_color"> <div style="background-color:red;cursor:pointer;" mce_style="background-color:red;cursor:pointer;" date-value="red">Red</div> <div style="background-color:blue;cursor:pointer;" mce_style="background-color:blue;cursor:pointer;" date-value="blue">Blue</div> <div style="background-color:green;cursor:pointer;" mce_style="background-color:green;cursor:pointer;" date-value="green">Green</div> <div style="background-color:orange;cursor:pointer;" mce_style="background-color:orange;cursor:pointer;" date-value="orange">Orange</div> </div> <div style="width:100%;margin:10px;" id="select_size"> <div class="a" date-value="small">S</div> <div class="b" date-value="middle">M</div> <div class="a" date-value="large">L</div> <div class="a" date-value="max_large">XL</div> </div> <div style="width:100%;margin:10px;text-align:left;" id="select_store"> 庫存:(<span id="span_store">1000件</span>) </div> <div style="border:2px solid;width:100px;height:100px;background-color:gray"></div> </body> </html>
更多關于jQuery操作json相關內容感興趣的讀者可查看本站專題:《jQuery操作json數據技巧匯總》
希望本文所述對大家jQuery程序設計有所幫助。
#免責聲明#
本站[綠夏技術導航]提供的一切軟件、教程和內容信息僅限用于學習和研究目的;不得將上述內容用于商業或者非法用途,否則,一切后果請用戶自負。本站信息來自網絡收集整理,版權爭議與本站無關。您必須在下載后的24個小時之內,從您的電腦或手機中徹底刪除上述內容。如果您喜歡該程序或內容,請支持正版,購買注冊,得到更好的正版服務。我們非常重視版權問題,如有侵權請郵件[admin@lxwl520.com]與我們聯系進行刪除處理。敬請諒解!