test2

Posted apimhnkj

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了test2相关的知识,希望对你有一定的参考价值。

<h1>目录1</h1>
<pre class="prettyprint lang-javascript">
function getNowDate() {
var date = new Date();
var split = "-";
var year = date.getFullYear();
var month = date.getMonth() + 1;
var strDate = date.getDate();
if (month >= 1 && month <= 9) {
month = "0" + month;
}
if (strDate >= 0 && strDate <= 9) {
strDate = "0" + strDate;
}
var currentdate = year + split + month + split + strDate;
return currentdate;
}
</pre>
<pre><code>123123
</code></pre>

<p>你是谁,为了谁,你的兄弟姐妹又是谁</p>
<p>你是谁,为了谁</p>
<p>你的兄弟,你的姐妹</p>
<p>你的兄弟姐妹</p>
<table>
<thead>
<tr>
<th>Tables</th>
<th align="center">Are</th>
<th align="right">Cool</th>
</tr>
</thead>
<tbody>
<tr>
<td>col 3 is</td>
<td align="center">right-aligned</td>
<td align="right">$1600</td>
</tr>
<tr>
<td>col 2 is</td>
<td align="center">centered</td>
<td align="right">$12</td>
</tr>
<tr>
<td>zebra stripes</td>
<td align="center">are neat</td>
<td align="right">$1</td>
</tr>
</tbody>
</table>

以上是关于test2的主要内容,如果未能解决你的问题,请参考以下文章

Linux 基本命令--ls 常用命令

PLSQL 检查列值并将其替换为空白

怎么理解这个箭头函数里的this指向

<a>和<img>不在同一行怎么办?