3

我有一个函数可以通过 keyup 检测所有输入值的变化:

查询:

// detect all inputs

$('.inputChange').each(function() {
   // Save current value of element
   $(this).data('oldVal', $(this).val())

   // Look for changes in the value
   $(this).bind("propertychange keyup input paste", function(event){
      // If value has changed...
      if ($(this).data('oldVal') != $(this).val()) {
       // Updated stored value
       $(this).data('oldVal', $(this).val())
        currentVal = $(this).val()
       // Do action
       inputElement = $(this).attr('data-element')
       inputProperty = $(this).attr('data-property')
       inputUnit = $(this).attr('data-unit')
        updateAllCSS(inputElement, inputProperty, currentVal + inputUnit)
     }
   });
 });

HTML:

    <input class="inputChange" data-element=".homeTemplate #colaAlpha h1" data-property="font-size" data-unit="px">px

我现在需要做另一件事,从这个 HTML 中获取选定的下拉值:

     <select class="selectChange" data-element=".homeTemplate #colaAlpha" data-property="height" data-unit="px">
         <option value="8">8px</option>
         <option value="12">12px</option>
         <option value="21">21px</option>
     </select>px

我想知道我应该怎么做呢?是否有可能会起作用的 propertychange 事件?

4

2 回答 2

17

看看http://api.jquery.com/change/

$(".selectChange").change(function (){
    alert($(this).val());
});
于 2012-10-16T10:28:48.340 回答
0

与上述复杂的输入检测代码不同,这里是适用于我页面上的任何选择的选择代码——它使用选定的值和数据标签:

$('.selectChange').change(function() {
    updateAllCSS($(this).attr('data-element'), $(this).attr('data-property'), $(this).val() + $(this).attr('data-unit'))
});
于 2012-10-16T11:01:32.387 回答