我是使用span的新手。我试图打印出我在同一页面上两次从javascript脚本获得的信息。
我可以打印一次获得的信息但是当我决定第二次打印信息时它不会显示它
此作品
<div id="layer4" class="auto-style10" style="position: absolute; width: 300px; height: 427px; z-index: 2; left: 1020px; top: 90px">
<span class="auto-style8"><h4>Incident Details</h4><br />
</span>
<br />
<h6> Report ID : </h6> <span id="ReportID"></span> <br />
<h6> Description : </h6> <span id="Description"></span><br />
<h6> Category : </h6> <span id="Category"></span> <br/>
<h6> Date and Time : </h6> <span id="DateTime"></span> <br />
<h6> User Id/ Mobile Number : </h6> <span id="UserID"></span><br />
<br />
<span id="ReportID"></span>
<form method="post" action="http://www.al-qarra.com/police_new/map2/changelevel.php" >
<select name="SelectCat" style="position: absolute; width: 60px; z-index: 2;">
<option>1</option>
<option>2</option>
<option>3</option>
</select>
<input name="reportno" type="hidden" value="<?php echo $_SESSION['incidentid']; ?>">
<input name="ChangeCat" id="SelectCat" type="submit" value="Change Status" style="position: absolute; left: 100px; width: 110px; z-index: 2;"/>
</form>
</div>
但是,当我将相同的div复制到同一页面但位置不同时,它不会显示信息
<div id="layer44" class="auto-style10" style="position: absolute; width: 300px; height: 427px; z-index: 2; left: 1020px; top: 300px">
<span class="auto-style8"><h4>Incident Details</h4><br />
</span>
<br />
<h6> Report ID : </h6> <span id="ReportID"></span> <br />
<h6> Description : </h6> <span id="Description"></span><br />
<h6> Category : </h6> <span id="Category"></span> <br/>
<h6> Date and Time : </h6> <span id="DateTime"></span> <br />
<h6> User Id/ Mobile Number : </h6> <span id="UserID"></span><br />
<br />
</div>
这是我要求的javascript
</style>
<script src="http://maps.google.com/maps/api/js?sensor=false" type="text/javascript"></script>
$("#ReportID").text(nreportid);
$("#Description").text(ndesc);
$("#Category").text(ncat);
}
</script>
答案 0 :(得分:1)
到目前为止,我发现了几个问题:
<span>
元素留空,但在标记之间添加
...看起来好像你正在制作标记汤z-index
,为什么?但是,只要您没有向我们展示您的JavaScript代码,这些猜测都不会得出结论。例如,如果您正在使用document.write('your-html');
,我们可以告诉您这是您的问题,并继续我们的方式......所以请in the FAQ
答案 1 :(得分:0)
尝试删除
style="position: absolute; width: 300px; height: 427px; z-index: 2; left: 1020px; top: 300px"
答案 2 :(得分:0)
id
属性必须是唯一的。如果页面上有多个您需要执行相同操作的项目,请改用class
。