如何將JavaScript中的變量(imageX)傳遞給我的HTML表單的隱藏字段?傳遞一個變量形成
<div class="popup">
<form action="myphp.php" method="POST">
<label for="name">Name</label>
<input type="text" name="name"><br /><br />
<input type="hidden" name="location">
<input type="submit" name="submit" value="Submit">
</form>
</div>
JS
var imageX = 'www.myweb.com/images/'+image+'.jpg';
你能告訴我你從哪裏得到圖像變量值嗎?是加載頁面時發生的事件或事件。 –
保留一些id給你的表單,並執行此操作: 'document.getElementById('formId')。location.value = imageX;'。 –