我正在使用Matlab尝试编写一个如下所示的HTML文件:
<HTML><pre>
this is the first line
this is another line
this is another line which prints a value: ???? <!--This line must print, instead of the question marks, the value present at the last row of the file-->
some random stuff ------------------
**reference to this value** <!--This value needs to be prented insead of ???? and does not need to be shown as the last row-->
</HTML>
我的目标是打印一个值(在这种情况下为数字)而不是???
。我在想我应该对未知 a priori 的值进行某种引用。实际上,这个值是一些操作完成后计算的结果,并且在文件之前打印了一些随机内容。
你能建议我一些聪明而优雅的方法来实现我的目标吗?
如果值为例如55,那么这就是浏览器中的输出:
到目前为止,我所尝试的内容没有成功:
<HTML><pre>this is the first line
this is another line
this is another line which prints a value: <a name="marco" href="#polo" ></a> <!--This line must print, instead of the question marks, the value present at the last row of the file-->
some random stuff ------------------
<a param name="polo" href="#marco"> 55 </a>
</HTML>
答案 0 :(得分:1)
HTML文件仍然是一个文件。所以基本上你可以用许多不同的方式呈现它。所以问题1:你如何制作该文件?第二个问题 - 您感兴趣的价值是在生成/提供文件或之后提供的?如果之后您应该使用JavaScript设置该值,这可能有助于How to display javascript variables in a html page without document.write。