-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
test sur la récupération des données #44
- Loading branch information
1 parent
142d8e9
commit 132ff00
Showing
2 changed files
with
28 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,17 @@ | ||
import * as d3 from "https://cdn.jsdelivr.net/npm/d3@7/+esm" | ||
|
||
const test = () => { | ||
console.log("Ca marche") | ||
} | ||
|
||
function recupererDonnees() { | ||
var textAreaData = document.getElementById('monTextarea').value; | ||
// Vous pouvez maintenant utiliser la variable textAreaData pour traiter ou afficher les données du textarea | ||
alert("Données récupérées : " + textAreaData) | ||
} | ||
|
||
|
||
|
||
|
||
|
||
export default test; recupererDonnees |