zoukankan      html  css  js  c++  java
  • legend3---8、烦请节约时间

    legend3---8、烦请节约时间

    一、总结

    一句话总结:

    时间不要浪费在垃圾情绪和无效社交上面。

    1、商标不能以个人的名义注册?

    可以先注册个体工商户,然后再可以注册商标

    2、注册一个商标大概花多少钱?

    注册商标大概花1000块钱,1100的样子

    3、网页的页面宽度改变事件?

    window.onresize=function(){ 需要执行的代码 }
      {{--小屏幕端的时候去除 内容中container 的左右缩进--}}
      <script>
          function remove_container() {
              if($(window).width()>720){
                  $('#content_container').addClass('container');
              }else{
                  $('#content_container').removeClass('container');
              }
              $('#content_wrapper').show();
          }
          remove_container();
    
          $(function () {
              window.onresize=function(){
                  //console.log("宽度改变了!");
                  remove_container();
              }
          });
      </script>

    4、支付怎么用个人的收款码啊?

    上接口,或者改改代码,支付换成直接创建订单,订单为个人二维码后台手动确认,或者第三方接口

    5、lavarel如何调整时区?

    打开 config 下的 app.php 找到 ‘timezone’,'timezone' => 'UTC',将UTC 改为 PRC 即可

    6、lavarel变量输出报错情况?

    if判断一下变量是否存在:@if(isset($d->blog->b_title)) {{$d->blog->b_title}} @endif

    7、jquery让按钮不可点击?

    $("#btn").attr("disabled", true);

    8、html中字符超出截断?

    CSS截断显示内容主要通过white-space,overflow,text-overflow三个属性实现。
    html
    <div class="hello substr">
        hello world!
    <div>
    
    css
    .hello{
      40px;
    }
    .substr{
      white-space:nowrap;
      overflow:hidden;
      text-overflow: ellipsis;
    }

    9、禁止textarea框拉动改变大小?

    resize:none;
    textarea{
     resize:none;
    }

    10、css布局实现左边固定宽度,右边剩余宽度?

    原理是左边float:left; 右边margin左边的宽度多一点就好

    二、内容在总结中

     
  • 相关阅读:
    vc++ 最小化到托盘的详细实现
    WS_CLIPCHILDREN和WS_CLIPSIBLINGS的理解(转载)
    windows 进程间通讯方法
    C++中各种数据量类型转换
    WTL 自绘 进度条Progressbar
    C++ 读取XML文件(tinyXML库的应用)
    WTL 自定义 Button类-自绘
    设计模式课程 设计模式精讲 27-3 状态模式源码解析
    设计模式课程 设计模式精讲 27-2 状态模式coding
    设计模式课程 设计模式精讲 26-3 访问者模式源码解析
  • 原文地址:https://www.cnblogs.com/Renyi-Fan/p/11657988.html
Copyright © 2011-2022 走看看