例如我有一个javascript文件在document.write();
中有不同的文字,
像:
document.write('here 1 line of text');
document.write('here 2 line of text');
我在html页面上添加了一个脚本文件:
<script type="text/javascript" src="jsfile.js"></script>
有没有办法加载一行文本而不是这个js文件中的所有文本?
例如,我需要从.js文件加载第一行文本'here 1 line of text'
。