我在表(char和date)中有两个属性,如a 90061455555和1990-06-14。 我必须创建引用,其中第一个属性中的第三个和第四个数字(90 06 1455555)与日期属性中的月份相同(1990- 06 -14)。 和类似的: 90 061455555 19 90 -06-14 9006 14 55555和1990-06- 14
我怎么能这样做?
答案 0 :(得分:1)
我会这样做:
$(document).ready(function() {
$("button").click(function() {
$("p").html('2.This is chapter two<br /><br />');
$("p").html('3.This is chapter three<br /><br />');
$("p").html('4.This is chapter four<br /><br />');
});
});