如何在JavaScript中动态生成表单?

时间:2019-04-21 03:39:07

标签: javascript html forms jsp

我已经用javascript动态创建了图像(录像机缩略图)。我想将此图像的图像路径发送到另一个文件。

我想我无法获得图像ID。我根本无法转到其他文件。图片已关闭。

window.onload = function() {
    var message = {id : 'vodList'}
    sendMessage(message);


    document.getElementById(bb).addEventListener('click', function() { vodPlayer(); });
}

ws.onmessage = function(message) {
    for (var i=0; i<parsedMessage2.length; i++){
    createImage = document.createElement("img");
    createImage.setAttribute('src', parsedMessage2[i].vod_thumbnail);
    createImage.setAttribute('alt', '100%x280');
    createImage.setAttribute('height', '280px');
    createImage.setAttribute('width', '100%');
    createImage.setAttribute('id', 'vodThumbnailId');
    document.getElementById('vodListId').appendChild(createImage);

    vodPath = JSON.stringify(parsedMessage2[i].vod_path);
  }
}

function vodPlayer() {
    var form = document.createElement('form');
   form.setAttribute('charset', 'UTF-8');
   form.setAttribute('method', 'Post');
   form.setAttribute('action', 'vodPlayer.html');

    var hiddenField = document.createElement('input');
                     hiddenField.setAttribute('type', 'hidden');
                     hiddenField.setAttribute('name', 'vodPath');
                     hiddenField.setAttribute('value', vodPath);
                     form.appendChild(hiddenField);

document.body.appendChild(form);
                     form.submit();

}

希望你能帮助我。

0 个答案:

没有答案