我在table.i中有1000 tr。想在ie中找到使用classname的tr。什么是在ie中使用classname查找tr的有效方法
答案 0 :(得分:-1)
您可以使用DOM的本机函数public class MobileController : Controller
{
[AllowAnonymous]
public ActionResult MobileIndex()
{
return View();
}
[AllowAnonymous]
public ActionResult Home()
{
return PartialView();
}
[AllowAnonymous]
public ActionResult Settings()
{
return PartialView();
}
[AllowAnonymous]
public ActionResult Search()
{
return PartialView();
}
}
或jQuery选择器getElementsByClassName('classname')
来查找目标元素。
见getElementsByClassName()
请参阅jQuery中的selectors