作者 王智

baoxiu22

... ... @@ -341,13 +341,14 @@
var Open = document.getElementById("open");
function HoverAndMouseout() {
console.log(1);
Open.hover(
function () {
console.log(1);
$(this).css({"width": "500px"});//移上宽度变为500
});
Open.mouseout(
function () {
console.log(2);
$(this).css({"width": "170px"});//移开还原
});
}
... ...