我需要有关 html 中变量的帮助。我的应用程序获取 SQL 请求并将它们发送到 Oracle 并将请求的数据库数据返回给用户。在发送请求之前,用户必须选择开始日期和结束日期。数据由 ajax 显示,我在一个“index.php”中有很多这样的 SQL。想象一下,一个包含 10 个 SQL 查询和 Dates 位置的文档如下:
//Dates box
<div class="date_boxes">
<div class="control-group">
<strong>Start Date:</strong>
<input type="text" value="choose the start date" id="startDate" name="startDate" class="startDate"
onfocus="if (this.value == 'choose the start date') {this.value = '';}"
onblur="if (this.value == '') {this.value = 'choose the start date'; }"/>
</div>
<div class="control-group">
<strong>End Date:</strong>
<input type="text" value="choose the end date" id="endDate" name="endDate" class="endDate"
onfocus="if (this.value == 'choose the end date') {this.value = '';}"
onblur="if (this.value == '') {this.value = 'choose the end date'; }"/>
</div>
</div>
它们中的每一个都是相同的,但具有不同的 ID。如何将变量放入此代码。我可以使用 php 变量还是应该在 JavaScript 中?你有什么例子吗?
谢谢你的任何建议。