简体   繁体   中英

Get id value using <input> with javascript and php

First example:

var dbSelected = "File selected: ";
var filenamePanel = document.getElementById('filenamePanel');
filenamePanel.textContent = dbSelected + files[0].name;

var postLink = files[0].link;
document.getElementById('postLink').value = postLink;

var postName = files[0].name;
document.getElementById('postName').value = postName; 

If I use <input type="hidden" name="postName" id="postName"> to send the value to another page via POST with PHP, it works.

Second example:

function onSuccessCallback(Blob){
    document.getElementById('postName').textContent = Blob.filename;
    document.getElementById('postLink').textContent = Blob.url;
    document.getElementById('results').textContent = JSON.stringify(Blob);            
};

Now, If I use <input type="hidden" name="postName" id="postName"> on the second example to send the 'postName' id value to another page, the value is empty.

What changes are necessary, on the second example, so that I can send the 'postName' id value to another page using a hidden <input> field?

使用.value而不是.textContent将数据存储在隐藏的输入字段中:

document.getElementById('postName').value= Blob.filename;

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM