区别display:box:display:inline:display:none三者的不同 display:block的特点是: block是Display默认的值.总是在新行上开始:该对象随后的内容自动换行;行高以及顶和底边距都可控制:宽度缺省是它的容器的100%,除非设定一个宽度:<div>, <p>, <h1>, <form>, <ul> 和 <li>是块元素的例子,意思是他们默认显示方式是block: display:inl…
来源: http://blog.csdn.net/anniejunyan/article/details/23257327  Selenium + Webdriver 学习(五) frame下元素定位 http://blog.csdn.net/huilan_same/article/details/52200586   selenium之 定位以及切换frame(iframe) frame标签有frameset.frame.iframe三种,frameset跟其他普通标签没有区别,不会影响到正常…
一.背景 使用django3 进行开发时,由于项目前端页面使用iframe框架,浏览器错误提示信息如下 Refused to display 'http://127.0.0.1:8000/' in a frame because it set 'X-Frame-Options' to 'deny'. 根据提示信息发现是因为 X-Frame-Options=deny 导致的. 二.X-Frame-Options 1 X-Frame-Options是什么 The X-Frame-Options HT…
1.htm <script language="javascript">function test(){alert("测试")}</script>---------------------------------------------2.htm <input type="button" onclick="parent.frame1.test()">…
有时候在缩放后,需要知道该次缩放是在哪个坐标开始缩放的.如上篇已知缩放的点,然后在该点对其缩放.本篇其实是逆运算 (x,y)就是当初在该点进行缩放 化简之后很简单,代码如下: func getZoomPoint(fromRect:CGRect,toRect:CGRect)->CGPoint{ var scale = toRect.width / fromRect.width var x = (toRect.origin.x - scale * fromRect.origin.x) / (1.0…
get 的时候没有问题,只有在post的时候出现出现这个错误 在方法中加入 @csrf_exempt…
celery -A CeleryTest worker -l info [2017-02-22 07:26:52,666: ERROR/MainProcess] consumer: Cannot connect to redis://:**@192.168.14.234:6379//: Client sent AUTH, but no password is set. Trying again in 2.00 seconds... [2017-02-22 07:26:54,687: ERROR/…
看到一些程序都有这种写法,也不知道原创者是谁了.先在博客保存下. 在.m文件 #import "UIView+MyFrameCategory.h" @implementation UIView (MyFrameCategory) //================================= - (void)setX:(CGFloat)x; { CGRect tempFrame = self.frame; tempFrame.origin.x = x; self.frame =…
在实际开发中很多时候我们都为了控件frame的操作焦头烂额. 例如:我们只想要获取view的width. 我们可以这么操作:view.frame.size.width 有时我们想要改变view的width然而我们不能直接改变->需要三部曲. 让人抓狂,为了解决这里烦恼我们可以通过改变类别来达到理想的效果. 下面是类别的.h文件: // // UIView+CXExtension.h //// // Created by ma c on 16/3/25. // Copyright © 2016年…
CGRect senderFrame = cell.senderLabel.frame;    CGRect creatAtFrame = cell.creatAtLabel.frame;    CGSize senderSize = [cell.senderLabel.text sizeWithAttributes:@{NSFontAttributeName:[UIFont fontWithName:@"Heiti SC" size:15.0]}];    senderFrame.s…