我的服务器上有一个auto_prepend
文件。
它包含以下内容:
<script src="../scripts/modules/raphael-min.js"></script>
<script>
var this_line_fails = Raphael(0,0,100,100);
//var overpaint_rectangle = overpaint_area.rect(0, 0, 10000, 10000, 0);
//overpaint_rectangle.attr({fill: "red"});
alert('hi');
</script>
但问题是,在 中auto_prepend
,调用 Raphael 的行总是失败,但在常规文件中它不会失败。就像设置中的某些东西auto_prepend
使它失败一样。
如何auto_prepend
在服务器上的文件中成功调用 Raphael 模块?