页面 笔记

1.样式切换

<style type="text/css">
tr.detail-row {
    display: none
}

tr.detail-row.open {
    display: block;
    display: table-row
}
</style>

<tr><td><a href="#" class="show-details-btn"</a></div></td</tr>
<tr class="detail-row"><td></td</tr>

<script>
$('.show-details-btn').on( 'click', function(e) {
    e.preventDefault();//取消事件的默认动作
    $(this).closest('tr').next().toggleClass('open');//该方法检查每个元素中指定的类。如果不存在则添加类,如果已设置则删除之。这就是所谓的切换效果。
});
</script>

 2.日期插件

<input type="text" name="rq" id="rq"class="form-control date" value="<s:date name='rq' format='yyyy-MM-dd' />">

<script>
$("#rq").datepicker({
    language : 'zh-CN',
    autoclose : true,
    pickDate : true,
    format : 'yyyy-mm-dd',
    minView : 'month',
    showMeridian : true
}).on('changeDate', function() {
    $(this).datepicker('hide');
});
</script>

3.douyu小窗口

function show(rid){
$("#flip12345").parent().remove();
$('body').append('<div style=" z-index:999;position: fixed;bottom: 0;right: 0;"><div id="flip12345" style="height:30px;cursor: pointer;">'+rid+'<div οnclick="show('+rid+')" style="float: right;">刷新</div></div><embed width="500" height="333" id="panel12345" allownetworking="all" allowscriptaccess="always" src="https://staticlive.douyucdn.cn/common/share/play.swf?room_id='+rid+'" quality="high" bgcolor="#000" wmode="window" allowfullscreen="true" allowFullScreenInteractive="true" type="application/x-shockwave-flash"><script>$("#flip12345").click(function(){if($("#panel12345").css("visibility")!="hidden"){$("#panel12345").css("visibility","hidden");}else{$("#panel12345").css("visibility","visible");}});</script></div>');
}

4.同步ajax

$.ajax({
   type:"GET",
  async : false,
  url:url,
  success:function(msg){
       } });

 

转载于:https://www.cnblogs.com/margin-gu/p/7058119.html

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值