01.
<script type=
"text/javascript"
>
02.
$(
'#addBusy'
).click(
function
(){
03.
04.
$(
'#add-table1'
).append($(
'#busyTime'
).clone());
05.
06.
});
07.
$(
'#addFree'
).click(
function
(){
08.
09.
$(
'#add-table2'
).append($(
'#freeTime'
).clone());
10.
11.
});
12.
function
make_autocom(autoObj,showObj){
13.
var
mkAutoObj=autoObj;
14.
var
mkSerValObj=showObj;
15.
new
Autocomplete(mkAutoObj,
function
() {
16.
this
.setValue =
function
(id) {
17.
document.getElementById(mkSerValObj).value = id;
18.
}
19.
if
(
this
.isModified )
20.
this
.setValue(
""
);
21.
if
(
this
.value.length < 1 &&
this
.isNotClick )
22.
return
;
23.
return
"data.php?q="
+encodeURIComponent(
this
.value);
24.
});
25.
}
26.
make_autocom(
"show_arti_topic"
,
"h_arti_id"
);
27.
make_autocom(
"show_arti_topic2"
,
"h_arti_id2"
);
28.
</script>