1
$.ajax({   
                 url: "sub_template5_js.php?content_id="+content_id,  
                 dataType: 'html',
                 success: function(data){  
                    data = data.replace( new RegExp("block1", 'g'), block_id_replace );
                     data = data.replace( new RegExp("<//script>", 'g'), '' );
                    data = data.replace( new RegExp("<script>", 'g'), '' );
                    alert(data);
                    $("#template_ipad script").empty;
                    $("#template_ipad script").append(data);
                }    
         });

当我提醒数据时,上面的脚本显示了类似这样的内容

imagePath=$prev.find('img').map(function(){
                                    return this.src.replace(/^.*[\\\/]/, '');
                                    }).get();
        imagePath = "images/"+imagePath;

追加后

imagePath=$prev.find('img').map(function(){
                                    return this.src.replace(/^.*[\\\/]/, '');
                                    }).get();
        imagePath = "images/" imagePath;

您可以在缺少附加“+”后看到上面的代码请帮助我

*之前 *

imagePath = "图片/"+imagePath;

*之后 *

imagePath = "图像/" imagePath;

谢谢你

4

0 回答 0