2012-01-09 41 views
0

我有一些常規花園品種鏈接(這是asp.net MVC 2,所以路由可能有點奇怪),出現在鉻但不是8。這是否會發生? Here the link doesn't show up鏈接不出現在即8,但他們確實出現在鉻

而且這裏的鏈接在Chrome中顯示出來...... enter image description here

,我指的是加入患者和添加頁面的左下角遭遇鏈接的鏈接。 這裏是花園品種的錨標籤,生成鏈接...

<a class="AddPatDlg" href="/PatientACO/AddPatient?PopID=1" title="Add Patient ACO Data">Add Patient</a> 
<a class="AcoData" href="/PatientACO/AddEncounter?PopID=1" title="Add New Patient Encounter">Add Encounter</a> 

我是否失去了我的想法?這究竟有多可能?

*我只是注意到,如果我滾動到一個地方,我看不到鏈接並向下滾動鏈接將出現。當我鼠標移到他們,他們就會消失...幫助*

更新2:更多的代碼

<div id="countdownDiv" style="display:none" align="left"> 
<p><font color="#990000"><b>This session has expired. Please Refresh the page</b> </font></p> 
<form action="/PatientACO/TemplateInfo?PopulationID=1&amp;ActiveAll=1" method="post"> <input type="submit" value="Refresh" id="test" /></form></div> 
<div id="frReloadDiv" align="right"> 
    <form action="/PatientACO/TemplateInfo?PopulationID=1&amp;ActiveAll=0" method="post"> 

    <input type="submit" value="Show All" id="test1" /></form><form action="/PatientACO/TemplateInfo?PopulationID=1&amp;ActiveAll=1" method="post"> 

    <input type="submit" value="Active Only" id="Submit1" style="display:none"/></form> 
</div> 
<div id="tempplateInfo"> 
<div id="templateResult" class="scroll"></div> 



<table id="table1" class="scroll" cellpadding="0" cellspacing="0"> 
<thead> 
    <tr> 
    <th>Edit</th> 
    <th>MRN</th> 
    <th>Hospital Fin</th> 
    <th>First Name</th> 
    <th>Last Name</th> 
    <th>Date of birth</th> 
    <th>Completed Pathway</th> 
    <th>Completed Pathway Reason</th> 
    <th>PCP Appointment</th> 
    <th>Specialist Appointment</th> 
    <th>Admit Date</th> 
    <th>Discharge Date</th> 
    <th>Discharge Disposition</th> 
    <th>Discharge To</th> 
    <th>Discharge Advocate Call</th> 
    <th>Home Health Care Accepted</th>  
    <th>Safe Landing Accepted</th> 
    <th>PCP Name</th> 
    <th>PCP Phone</th> 
    <th>PCP Appointment Location</th> 
    <th>Specialist Name</th> 
    <th>Specialist Phone</th> 
    <th>Specialist Appointment Location</th> 
    <th>Comments</th> 
    <th>Patient Room Phone</th>  
    <th>Phone</th>   
    <th>Payor</th> 
    <th>MRN Type</th>  
    </tr> 
    </thead> 
    <tbody> 
</tbody> 
</table> 

<a class="AddPatDlg" href="/PatientACO/AddPatient?PopID=1" title="Add Patient ACO Data">Add Patient</a> 
<a class="AcoData" href="/PatientACO/AddEncounter?PopID=1" title="Add New Patient Encounter">Add Encounter</a> 

    <p style="text-align:left"> 
    <b> 

    </b> 
    </p>  
</div> 

也許這臺左對齊是扔我一個循環。 UPDATE:左對齊似乎沒有做任何事......它好像「文本對齊:右」,沒有解決任何

我也注意到,在兼容模式下這個問題沒有按」根本不出現。

+0

你能提供完整的HTML源代碼?狂猜:一些style =「float:something」正在覆蓋你的鏈接.. – madflow 2012-01-09 20:33:41

+0

它的代碼很多。很多處理你看到的表格。你確定你想看到這一切嗎?除了實際的表格數據之外,所有的東西都不好受......這只是一場噩夢。 – SoftwareSavant 2012-01-09 20:43:04

+0

嗯 - 對我來說這將是調試代碼的唯一方法。也許別人是心靈的:D。你可以把它放在http://jsfiddle.net上嗎? – madflow 2012-01-09 20:47:17

回答

1

試圖纏繞你的錨元素:

<p class="action"> 
    <a class="AddPatDlg" href="#">Add Patient</a> 
    <a class="AcoData" href="#">Add Encounter</a> 
</p> 

然後據此樣式元素:

.action { 
    clear: both; 
    display: block; 
} 
+0

由於某些原因,這仍然不起作用。 – SoftwareSavant 2012-02-15 17:34:25