既沒有調(diào)用原生DOM選擇器也沒有調(diào)用jquery選擇器。。直接用id就能獲取dom了嗎?疑惑<!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">??? <head>??????? <title>微調(diào)按鈕插件</title>??????? <link href="http://yifanck.cn/data/jquery-ui.css" rel="stylesheet" type="text/css" />??????? <link href="style.css" rel="stylesheet" type="text/css" />??????? <script src="http://yifanck.cn/data/jquery-1.8.2.min.js" type="text/javascript"></script>??????? <script src="http://yifanck.cn/data/jquery-ui-1.9.2.min.js" type="text/javascript"></script>??? </head>?? ???? <body>??????? <div id="divtest">??????????? <div class="title">??????????????? 選擇顏色值</div>??????????? <div class="content">??????????????? <span id="spnColor" class="input fl">??????????????????? <input />??????????????? </span>??????????????? <span id="spnPrev" class="prev fr"></span>??????????? </div>??????? </div>?????? ???????? <script type="text/javascript">??????????? $(function () {??????????????? //定義變量??????????????? var intR = 0, intG = 0, intB = 0, strColor;??????????????? $('input').spinner({??????????????????? //初始化插件??????????????????? max: 10,??????????????????? min: 0,??????????????????? //設(shè)置微調(diào)按鈕遞增/遞減事件??????????????????? spin: function (event, ui) {??????????????????????? if (ui.value == 8)??????????????????????????? spnPrev.style.backgroundColor = "red";??????????????????????? else??????????????????????????? spnPrev.style.backgroundColor = "green";??????????????????? },??????????????????? //設(shè)置微調(diào)按鈕值改變事件??????????????????? change: function (event, ui) {??????????????????????? var intTmp = $(this).spinner("value");??????????????????????? if (intTmp < 0) $(this).spinner("value", 0);??????????????????????? if (intTmp > 10) $(this).spinner("value", 10);??????????????????????? if (intTmp == 8)??????????????????????????? spnPrev.style.backgroundColor = "red";??????????????????????? else??????????????????????????? spnPrev.style.backgroundColor = "green";??????????????????? }??????????????? });??????????? });??????? </script>??? </body></html>
這里的spnPrev是怎么獲取到DOM元素的?
尼康老法絲
2017-06-08 09:52:37