我正面临 Chrome的奇怪问题。 我试图将这个问题放在一个没有按照任何轮椅标准制定的网页上。 我可以说的是近1000+w3c问题。
错误属于“立克”功能,在“雅氏”电话之前进行罚款。 在接到亚克斯电话后,我们正在过滤内容(包括与浮标连接)。 这些功能是用于集装箱和(hide)另一个集装箱,在最初装载时,该集装箱正在做罚款。 但是,在利用Ajax更新链接之后,how())和藏( hide)没有发挥作用(在浏览器中,视像没有变化)。 但我发现,这一职能甚至在大灾难发生之后也正在发生。 我通过在职能中发出警报,测试了这一情况。 但是,职能范围内的.和隐藏()并没有发生。
I found one strange behavior that, when I inspect element by right click on the links, the show() and hide() in the functions are working fine.
问题与Safari、IE、Landre等没有关系,只有 Chrome。
希望这里的一些专家能够帮助我解决这一问题。
该守则:
HTML
<a href="javascript:void(0);" onclick="swap(1)" >Show hotels in area</a>
<a href="javascript:void(0);" onclick="swap(2)">Show hotels on map</a>
<table border="0" cellpadding="0" cellspacing="0">
<tr id="hotelArea" style="display: none">
<td>
<!-- Hote Area Content here -->
</td>
</tr>
<tr id="hotelsMap" style="display: none">
<td>
<!-- MAP Content here -->
</td>
</tr>
</table>
Javascript after the html (this is at the bottom of the page):
function swap(n){
if(n==1){
$( #hotelsMap ).hide( slow );
$( #hotelArea ).show( slow );
}
if(n==2){
$( #hotelArea ).hide( slow );
displayHotelsOnMap();
$( #hotelsMap ).show( slow );
}
}
I also tried to use .live(click) instead of the inline onclick, but same issue happened.... Thanks in advance -sunil