<?php echo __('Upload File(s)'); ?>
插件缩小.js文件
text:{uploadButton:"Upload File(s)"}
我在网上搜索并发现在.js文件中php脚本不会运行,所以如何用我的php代码替换.js文件中的文本才能使它工作?
.js文件: http://we.tl/HDT0yiVSq1
(不幸的是,它是一个缩小的文件,但我们搜索的文本位于文件的末尾)
答案 0 :(得分:0)
您可以使用$.get()
。
所以:
$.get("phpfile.php", function(data){
// initialize your upload and then use instead of "Upload File(s)" the variable data.
// so uploadButton: data
});