2019-09-27 14:37:59 +00:00
|
|
|
$(document).ready(function() {
|
2019-11-08 13:13:32 +00:00
|
|
|
$("#firstname").value("hhh");
|
|
|
|
|
|
|
|
$.post('/senddata/checkloginstate', 'action=getfirstname', function (data) {
|
|
|
|
console.log(data);
|
|
|
|
}, 'json');
|
2019-09-27 14:37:59 +00:00
|
|
|
});
|