So setzen Sie mehr als eine JavaScript -Funktion in ein HTML -Tag ein

Use a semi-colon to separate your functions inside the tag.
Example:

<button onclick="functionOne();functionTwo();">Click Me!</button>

You can also separate them using a comma(,)
Sparkling Stork