当前位置: 代码迷 >> 综合 >> 360虚拟定位权限
  详细解决方案

360虚拟定位权限

热度:69   发布时间:2023-09-09 22:50:00.0
360虚拟定位权限
复制代码 代码如下:

$(document).ready(function(){
$("p:odd").css("background-color", "#bbf");
$("p:even").css("background-color","#ffc");
$("p").click(function () {
$("p").each(function(){
if($(this).hasClass("highlight")){
$(this).removeClass("highlight");
}});
$(this).addClass("highlight");
});
});

源码参考gamil:test_jquery_table 360虚拟定位权限
  相关解决方案