Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个SelectIamge.php包含以下 html 的表单:
SelectIamge.php
<input type="text" id="urlImage" /> <input type="button" id="selectImage" />
用户需要能够单击 selectImage 按钮以打开页面 UploadImage.php 的弹出窗口。然后,用户将上传一张图片,并显示该图片的缩略图。如果用户单击缩略图,我需要将图像的 url 放在 urlImage 文本框中。
有人可以帮我解决这个问题吗?
首先给缩略图一些 id 即 id='thumb'
包含 jquery 库文件并在文件中的 javascript 下方写入
<script type="text/javascript"> $("#thumb").click(function(){ var src = $(this).attr('src'); $("#urlImage").val(src); }); </script>