最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - How write function in onclick button attribut - Stack Overflow

programmeradmin1浏览0评论

I'm trying to use a function directly in the attribute onclick of my button, but i have always an error. Example:

<button onclick="function() { alert('hello'); }">Click me</button>

And the result is:

Uncaught SyntaxError: Unexpected token (

I'm trying to use a function directly in the attribute onclick of my button, but i have always an error. Example:

<button onclick="function() { alert('hello'); }">Click me</button>

And the result is:

Uncaught SyntaxError: Unexpected token (

Share Improve this question edited Jan 17, 2019 at 22:50 Sebastian Simon 19.6k8 gold badges61 silver badges84 bronze badges asked Apr 20, 2017 at 14:58 StormStorm 731 gold badge1 silver badge13 bronze badges 1
  • All you're trying to do is define a function, which wouldn't visibly acplish anything anyway. Just invoke the code you're trying to invoke: onclick="alert('hello')" If you want to define a function, do that separately in your JavaScript code and just invoke the function in onclick. (Or, even better, attach it as a handler from the JavaScript code so you're not writing in-line JavaScript in your HTML.) – David Commented Apr 20, 2017 at 15:03
Add a ment  | 

4 Answers 4

Reset to default 4

no need to make it a function, just list the statements:

<button onclick="alert('hello');alert('hello 2');alert('hello 3');">Click me</button>

Below code will allow you to add function in your onclick attribute.

Click me

<button onclick="javascript:(function() { alert('hello'); })()">Click me</button>

You should write your code like this.

<button onClick="alert('hello');">Click me</button>

You can do things like that if you want all of this in your html file

    <script>
        function hello(){
    	  alert('hello')
        }
    </script>

    <button id="bait" onClick="hello()">
      Click me
    </button>
    <!-- OR -->
    <!-- <button onclick="javascript:(() => {alert('hello')})()"> -->
    <!-- But it's good for short function only -->

But I think you should use jQuery instead (if you can)



If you want to do so, just add a clickHandler function:

    $("#bait").on("click", () => {
      alert('hello')
    })
<script type="text/javascript" src="http://ajax.googleapis./ajax/libs/jquery/1.8/jquery.min.js"></script>

<button id="bait">Click me </button>

A bit overkill for a prompt but I suppose you ask this for a trickier function so it'll be easier overall imo

发布评论

评论列表(0)

  1. 暂无评论