12345678910111213141516171819 |
- $(document).ready(function() {
- $("#dateget").click(function() {
- var machine = $("#machine").val();
- var dateget = $("#dateget").val();
- var calendar = $("#calendar").val();
- $.ajax({
- type: 'POST',
- url: 'objectevent.php',
- data: {calendar:calendar, machine:machine, dateget:dateget},
- success: function (msg) {
- $('#message1').html(msg);
- }
- });
- });
- });
|