ajax图像作为php中的响应
我想使用 php 显示图像作为对 ajax 调用的响应。有人有完整的代码吗?请帮帮我.. 提前致谢..
I want to display an image as a response to an ajax call using php.. Does anybody have the complete code for this?? Please help me out..
Thanks in advance..
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
好吧,我没有完整的代码,如果有,我也不会给你。
您需要首先使用 PHP 的各种图像生成函数。要使其动态,您可以发送在网址中编码的各种参数 可以使用
$_GET
php 中的超全局。然后,您可以将现有图像占位符元素的
src
设置为动态图像的位置,然后瞧!即时动态图像。Well I don't have the complete code to this, and if I did, I wouldn't give it to you.
You need to start off by creating an image using PHP's various image generation functions. To make it dynamic you could send it various parameters which are encoded in the url and can be fetched using the
$_GET
superglobal in php.You would then set the
src
of an existing image placeholder element to the location of your dynamic image, then voila! Instant dynamic image.您应该使用 jQuery + JSON 组合。您可以使用 json_encode 将 php 数组转换为 JSON 格式。
index.php:
car.php:
bike.php:
ajax.js:
You should use jQuery + JSON combination. You can convert php array into JSON format using json_encode.
index.php:
car.php:
bike.php:
ajax.js: