0
代碼如下 我面臨什麼問題?我想jQuery按鈕幻燈片工作在JSF代碼中的命令鏈接。我嘗試了所有的選擇,但沒有得到適當的輸出。 jQuery的:使用jquery css進行命令鏈接
<script type="text/javascript">
$(function() {
$('.button_bLeft').hover(
function() {
var $this = $(this);
var $slidelem = $this.prev();
$slidelem.stop().animate({'width':'225px'},300);
$slidelem.find('span').stop(true,true).fadeIn();
$this.addClass('button_c');
},
function() {
var $this = $(this);
var $slidelem = $this.prev();
$slidelem.stop().animate({'width':'70px'},200);
$slidelem.find('span').stop(true,true).fadeOut();
$this.removeClass('button_c');
}
);
});
</script>
的Html代碼 -
<a class="button_aLeft"><span>Sign In</span></a>
<a class="button_bLeft">Sign</a>
JSF:
<td ><h:panelGrid columns="6" width="100%" columnClasses="button_bLeft">
<c:forEach items="#{collectionPlace}" var="places" class="button_aLeft">
<c:if
test="#{places.country eq allPlaces.country and places.regionName eq allState.regionName}">
<h:commandLink action="#{placesManager.showDetail}"
value="#{places.cityName}" styleClass="b_one"
render="panelgrp1,panel1:panelgrp3">
<f:param name="cityid" value="#{places.placeid}" />
</h:commandLink>
</c:if>
</c:forEach>
</h:panelGrid>
</td>
是生成所有的HTML?你能發佈完整的HTML嗎?我的意思是,在地點列表中,表格...動畫代碼看起來不錯,問題僅在JSF部分,因爲JQuery隻影響HTML生成的代碼 – TCHdvlp