getElementById (). değer hiçbir şey döndürür

2 Cevap php
<td id="'.$row['id'].'"style="display: none;">
    <input id="addEdit" type="text" value="" size="4"/>
</td>
<td>
    <input name="add" value="A" type="submit" onClick="addObs('.$row['id'].'); return false;"/>
</td>

.

function addObs(id)
{
    var addEditTD = document.getElementById(id);

    if (addEditTD != null && addEditTD.style.display == 'none')
    {
        addEditTD.style.display = '';
    }

    if (addEditTD.style.display == '' && document.getElementById('addEdit').value != "")
    {
        //some code
        alert(document.getElementById('addEdit').value);
    }
}

Ben 'addEdit' giriş metin herhangi bir değer almıyor, neden, yardım pls bilmiyorum.

bu benim html etiketleri ile ilgili "kaynak" hatları şunlardır:

<td id="30129"style="display: none;">
<input id="addEdit" type="text" value="" size="4"/></td>
<td>
<input name="add" value="A" type="submit" onClick="addObs(30129); return false;"/>
</td>

2 Cevap

Ah. You are using pure numbers as element IDs, which is not possible. Add something in front, like "row_30129" (to the ID itself and the function calls, of course). Also, add quotes to the addObs() call:

addObs('row_30129');

Bu işe gerekir.

Ben sadece aracılığıyla javascript koştu http://www.jslint.com -

Error: Problem at line 5 character 19: Use '!==' to compare with 'null'.

if (addEditTD! = null && addEditTD.style.display == 'none')

Zımni Küresel: belge 3,10,13, 13 uyarı