> For the complete documentation index, see [llms.txt](https://docs.webmix.cc/jquery/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.webmix.cc/jquery/5.-shi-jian-jian-ting-event-handling/5.6-shi-jian-de-chu-fa-triggering-events.md).

# 5.5 觸發事件與解除事件綁定

## .trigger()：觸發事件

一個按鈕點擊，觸發其它元素的事件：

```javascript
$("#btn2").trigger("click");
```

也可以這樣寫(較常見)：

```javascript
$("#btn2").click();
```

觀察以下範例：

{% embed url="<https://codepen.io/carlos411/pen/eYpmzQN>" %}

## .off()：用來解除事件的綁定

範例：

{% embed url="<https://codepen.io/carlos411/pen/qBOEamp>" %}
