0

我有以下要更改的代码(使用 jquery.knob.js)

<div id="mylist">
<ul>
    <li class="working">
        <div style="display:inline;width:32px;height:32px;">
            <canvas width="32" height="32px"></canvas>
            <input type="text" id="o_185d57vbk1qk11b53l3s107r1rvnh">
        </div>
        <p>
            BS.txt<i>629 b</i>
        </p><span></span>
    </li>
    <li class="working">
        <div style="display:inline;width:32px;height:32px;">
            <canvas width="32" height="32px"></canvas>
            <input type="text" id="o_185d57vbk1on1lln5ngdberesi">
        </div>
        <p>
            phpbrew.txt<i>639 b</i>
        </p><span></span>
    </li>
    <li class="working">
        <div style="display:inline;width:32px;height:32px;">
            <canvas width="32" height="32px"></canvas>
            <input type="text" id="o_185d57vbk1kl6roie3d6lak15j" >
        </div>
        <p>
            blah.txt<i>2 kb</i>
        </p><span></span>
    </li>

</ul>
</div>

使用此代码:

function update(up, file) {
    up.context.find('input').attr('id').eq(file.id).val(progress).change();
}

我给 file.id; 但它没有找到它。一定是真的很愚蠢,但我想不通。

4

1 回答 1

2

因为你有身份证

$('#' + file.id).val(progress).change();
于 2013-09-26T13:03:14.703 回答