我的MVC应用程序中有一个分页菜单PartialView,如下所示:
<% if (Model.TotalPages > 5)
{
int index = Model.PageIndex;
int minIndex = index - 2;
int maxIndex = index + 2;
if (index < 2)
{
minIndex = 0;
maxIndex = 4;
}
if
请描述如何使用jQuery使用我的自定义属性来引用标记。
我有这样的标签:
<a user="kasun" href="#" id="id1">Show More...</a>
我想引用标签而不引用id。喜欢
$('#id1')
我想把它说成:
$('#user')//this is wrong. I mentioned this code only for understand what I mean.
谢谢。
我希望找到一个带有关联类的div,但一定不能禁用它。我使用下面的代码来获取下一个同级元素,但它将返回具有"menuDiv“类的下一个元素。
var nextDiv=jQuery('div.subMenuBarhover').nextAll('.menuDiv:first');
但现在我需要元素,这是不是禁用和所有元素的id是未知的。
我如何才能做到这一点?
我正在尝试使用PrimeFaces和JSF组件来实现jQuery,但是它不能正常工作。当我尝试对HTML标签做同样的事情时,它工作正常。
下面是使用jQuery正常工作的带有HTML标记的代码:
<input type="checkbox" id="check2"></input>
<h:outputText value="Check the box, if your permanent address is as same as current address."></h:outputText>