我的目标是创建一个像这样的照片路径,
terminate()
这个区域
html: "<img src='[add-file-path-here]" + file["name"] + "' width='50' />"
需要[add-file-path-here]
$ username是页面中的隐藏字段,因此应易于访问。 表格看起来像这样,
users/$username
在这个JS文件中如何将$ username变量添加到图像路径中。这样,无论登录哪个用户,它总是显示该用户图像的仪式路径
所以要清楚,在html表单中我有一个隐藏的字段调用 <form id="upload" method="post" action="actions/upload.php" enctype="multipart/form-data">
<input type="hidden" name="username" value="<?php echo $username; ?>" id="username">
,我想在$username
JS file
如何为 html: "<img src='[add-file-path-here]" + file["name"] + "' width='50' />"
[add-file-path-here]
答案 0 :(得分:2)
只需用jquery读取表单元素值吗?
var path = "users/" + $("#username").val();
// ....
html: "<img src='" + path + file["name"] + "' width='50' />"