我不知道我是在误解语法还是我不理解这个概念。我想获取一个javascript变量并将其连接到jQuery函数中的URL参数。该变量由另一个上传脚本的jQuery函数重新分配。
<script type="text/javascript">
var trackid = 12;
jQuery(document).ready(function() {
$('#mainftp2').uploadify({
'uploader' : 'js/uploadifymultiple/uploadify.swf',
'script' : 'js/uploadifymultiple/uploadify.php?<?php echo urlencode("songid=" . $songid . "&userid=" . $userid . "&trackid=);?>'+trackid+'"',
'multi' : true,
'auto' : true,
'height' : '32', //height of your browse button file
'width' : '250', //width of your browse button file
'sizeLimit' : '51200000', //remove this to set no limit on upload size
'simUploadLimit' : '3', //remove this to set no limit on simultaneous uploads
'buttonImg' : 'img/browse.png',
'cancelImg' : 'img/cancel.png',
'folder' : '<?php echo $multiFolder?>', //folder to save uploads to
onProgress: function() {
$('#loader2').show();
},
onComplete: function(event, queueID, fileObj, response, data) {
$('#loader2').hide();
$('#allfiles2').load(location.href+" #allfiles2>*","");
$('#filesUploaded2').attr('value', ''+response+'');
//location.reload(); //uncomment this line if youw ant to refresh the whole page instead of just the #allfiles div
}
});
$('ul li:odd').addClass('odd');
});
</script>
答案 0 :(得分:0)
检查双引号的位置,你在PHP片段中缺少一个,并在URL的末尾有一个额外的。
script: 'js/uploadifymultiple/uploadify.php?<?php echo urlencode("songid=" . $songid . "&userid=" . $userid . "&trackid=);?>'+trackid+'"',
首先,我们将关注我们所知道的错误部分:
'uploadify.php?<?php echo urlencode("songid=" . $songid . "&userid=" . $userid . "&trackid=);?>'+trackid+'"',
问号在.php
部分之后。 songid
和userid
似乎很好。
'uploadify.php?<?php echo urlencode("&trackid=);?>'+trackid+'"',
哦,废话,我们打电话给urlencode
的结束语是哪里?
'uploadify.php?<?php echo urlencode("&trackid=");?>'+trackid+'"',
所以现在我们有一个字符串,它是JavaScript的一部分,PHP的一部分,它是正确的。
'uploadify.php?etc&trackid=' + trackid + '"',
但是网址没有尾随引号,因此必须有额外的。
'uploadify.php?etc&trackid=' + trackid,