-1

JavaScript メソッドがあり、データを含むテーブルを作成しました。次のようになります。

Picture    Product
PicA       ProA
PicB       ProB
PicC       ProC

私のjavaScriptコードは次のとおりです。

function onPopulated() {
var list = $find("ace").get_completionList();
var count = list.childNodes.length;

for (i = 0; i < count; i++) {
    var item = list.childNodes[i]._value;           
    var name = item.product;
    var category = item.category ;
    var RecID = item.RecID;
    var pic= item.pic;
    var url = "abc.com.tr/img/p_" + RecID + "_" + pic+ "_01.jpg"
    list.childNodes[i].innerHTML = '<span id="name" >
        <table>
            <tr style="width:50px;height:55px;" >
                <td>
                <img width="50" height="50"                    
                    style="textalign:center" src="' + url + '"/>
                </td>
                <td>' + name + '</td>
            </tr>
        </table>   
      </span>';
    }

}

次のようなテーブルを作成したい:

Picture    Product      Picture    Product
PicA       ProA         PicD       ProD
PicB       ProB         PicE       ProE
PicC       ProC         PicF       ProF

作成方法は?回答ありがとうございます

4

1 に答える 1

1

ajax オートコンプリートを使用できると思いますか? Im true の場合 width:500px !important;、ajax オートコンプリートの completionList に使用する必要があります。幅の範囲は自由に設定できます。次に、テーブル2ビューを取得できます

于 2013-06-11T08:50:09.093 に答える