杂记

html:

target: 属性规定在何处打开 action URL。
 _blank 在新窗口/选项卡中打开。
 _self 在同一框架中打开。(默认)
 _parent 在父框架中打开。
 _top 在整个窗口中打开。
 framename 在指定的框架中打开。

正则表达式:

string regexImgPatten = @"<img[^>]+(src)\s*=\s*""?([^"">]+)""?(?:[^>]+([^"">]+)""?)?";
string regexHrefPattern=@"<a\s+href\s*=\s*""?([^"">]+)""?>(.+)</a>";
"^[\u4e00-\u9fa5]{3,}$"表示字符串必须全部是汉字,而且必须是3个

table中的一些问题:

解决Table中th间隔问题:cellspacing="0";
解决列数不一致:colspan="8"(合并单元格)

解决ifame的滚动条问题、<iframe src="orderDetail.aspx" class="order_detail" scrolling="no"></iframe>

欢迎大家访问yhy的新博客:一块吧 (www.yikuai8.com)
原文地址:https://www.cnblogs.com/yhongyu/p/2496123.html