我在通过网络应用程序使用的速度脚本中添加了文本字段和按钮。当 web 应用程序启动时,将读取 start.properties 文件。有一个属性: debug_on 可以取两个值 0 或 1。
所以我想根据 debug_on 值显示文本字段和按钮。如果我没记错的话,它可以通过 javascript 在速度脚本中完成(我不是 JavaScript 专家),但我需要获取属性值才能进一步移动。
我怎样才能实现它?
更新
最后嵌入主要 GWT (Java) 代码的 Velocity 脚本示例:
<!--doctype head declaration-->
<head>
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
<title>Web App</title>
<style>
<!-- styles -->
</style>
<link rel="stylesheet" href="/css/webapp.css" type="text/css"/>
<meta name='gwt:module' content='$uri'>
</head>
<body>
<script language="javascript" src="/$uri/com.myproject.gwt.main.nocache.js"></script>
<!-- TextField and button are located here -->
<table style="width: 300px; height: 100px;" class="gwt-DialogBox" cellpadding="0" cellspacing="5">
<!-- some other part of a page tha will be persistent through all GWT pages -->
</table>
</body>
</html>