$value = 'show_pdf1'; //retrieve the selector here
墨色风雨
浏览 58回答 1
1回答
慕勒3428872
$.post('php/readPdf.php', {whichFrame:whichFrame,value:value},function(data) { $('#'+whichFrame+'').prop('src', data);});whichFrame 和 value 是 javascript 方法,您可以通过 id 从不同的标签中获取值。我的 readPdf.php 返回文件。<?phpecho $file1; //this get set as data as a 'src' attribute.?>就是这样,还是谢谢!