热门标签 | HotTags
当前位置:  开发笔记 > 编程语言 > 正文

php发送js命令,从JS(脚本的回调函数)发送数据到PHP?

我使用ThickBox的与WordPress,上传后ThickBox的数据发送回编辑器(上载字段),整个jQuery代码看起来就像是here࿱

我使用ThickBox的与WordPress,上传后ThickBox的数据发送回编辑器(上载字段),整个jQuery代码看起来就像是here:从JS(脚本的回调函数)发送数据到PHP?

jQuery(document).ready(function() {

jQuery('#upload_image_button').click(function() { //user clicks upload button

tb_show('', 'media-upload.php?type=image&TB_iframe=true'); //Thickbox pop-ups

return false;

});

window.send_to_editor = function(html) { //here's our callback function

imgurl = jQuery('img',html).attr('src');

jQuery('#upload_image').val(imgurl); //that's how we send something to front-end

//how to send "imgurl" to back-end within this function?

tb_remove(); //closes Thickbox

}

});

我不知道什么是发送变量的最佳方式从JS到PHP(我想把它发送到WP功能,所以它将被注册为一个“选项”使用update_option('option_name','variableFromJS');

请记住,thickbox在iframe中打开,所以我得到的是这个回调函数。



推荐阅读
author-avatar
GYuan83_844
这个家伙很懒,什么也没留下!
PHP1.CN | 中国最专业的PHP中文社区 | DevBox开发工具箱 | json解析格式化 |PHP资讯 | PHP教程 | 数据库技术 | 服务器技术 | 前端开发技术 | PHP框架 | 开发工具 | 在线工具
Copyright © 1998 - 2020 PHP1.CN. All Rights Reserved | 京公网安备 11010802041100号 | 京ICP备19059560号-4 | PHP1.CN 第一PHP社区 版权所有