aktuelle.kurse/old_m133/Modul_Unterlagen_133_VOR/01-Modulinhalte/07 Script (JQuery)/07 jQuery Lösungen/jQueryFunction.js

9 lines
288 B
JavaScript
Raw Normal View History

2022-02-24 09:37:43 +01:00
$(document).ready(function() {
$("#btn1").click(function () {
var txt=$('input:text[name=iofield]').val("Klick Event ausgeloest");
// alert(txt);
// $.get( "http://localhost/M133/jquery/jquery6.php", {name: txt, time: "Test"} );
});
});