Jump to content
php.lv forumi

briedis

Moderatori
  • Posts

    4,669
  • Joined

  • Last visited

Community Answers

  1. briedis's post in Jqery kļūda veidojot JSON, ja KEY's ir dati no Jqery was marked as the answer   
    Dari tā:
    obj[$('#measurement_offset_length_val_1').val()] = $('#measurement_offset_length_key_1').val();
  2. briedis's post in Kas šajā gadījumā funkcijai jāatgriež? was marked as the answer   
    function call_smarty(){
    ...
    return $smarty;
    }
     
     
    $smarty = call_smarty();
    $smarty->...

  3. briedis's post in jQuery <input> ne-updeitojas 'value' was marked as the answer   
    Tas ir tāpēc, ka tu nolasi vērtību ar attr('value').
     
    Šis atgriež html atribūta value=.. vērtību.
     
    Tev vajag iegūt elementa propertija vērību ar $('input').prop('value') vai $('input').val(); vai $('input')[0].value (natīvais DOM)
     
    Izlasi šo: http://stackoverflow.com/questions/5874652/prop-vs-attr
     
    Karoč, vajag izprast atšķirību starp atribūtiem un propertijiem.
×
×
  • Create New...