有没有更好的方法来更新调用 PHP 页面的 img 标签?
我正在使用 jcrop,在用户 crps 图像之后,我调用一个返回 img 标签的 php 页面,如下所示:
$.get("get_profile_picture.php", function(data) {
$('#profile_photo_id').html(data);
jQuery('#cropbox').Jcrop({
onChange: showPreview,
onSelect: showPreview,
aspectRatio: 1
});
});
$.get("get_profile_thumb.php", function(data) {
$('#profile_thumb_id').html(data);
});
这工作正常,但我担心的是,每次用户上传新图像时,我都会进行两次额外的调用。从 get_profile_picture.php 返回的 img src 代码如下所示:
<img src=<?php echo(getProfileThumb($user_id, FALSE)) ?> id="cropbox" />
我很想知道是否有更优雅的解决方案。我尝试为“cropbox”id 设置 attr 'src' 标记,但它需要首先执行其中的 PHP 代码。有什么想法或建议吗?
I'm using jcrop and after a user crps an image I make a call to a php page that returns the img tag like so:
$.get("get_profile_picture.php", function(data) {
$('#profile_photo_id').html(data);
jQuery('#cropbox').Jcrop({
onChange: showPreview,
onSelect: showPreview,
aspectRatio: 1
});
});
$.get("get_profile_thumb.php", function(data) {
$('#profile_thumb_id').html(data);
});
This works fine but my concern is that I'm making two additional calls everytime a user uploads a new image. The img src code returned from get_profile_picture.php looks like this:
<img src=<?php echo(getProfileThumb($user_id, FALSE)) ?> id="cropbox" />
I'm curious to know if there is a more elegant solution. I've tried setting the attr 'src' tag for the "cropbox" id but it needs to execute the PHP code inside first. Any thoughts or suggestions?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您想摆脱第二个 GET,您可以使用第一个 GET 中加载的 img 标签(当然还有图像),并使用 css 将其大小调整为缩略图的大小。
if you want to get rid of the second GET you could use the loaded img tag (and image of course) from the first GET and resize it with css to the size of your tumbnail.