I want to show onclick alert message on button click in javascript. How to do that?
Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:
- CRM
- e-Commerce
- 회계
- 재고 관리
- PoS
- Project
- MRP
신고된 질문입니다
2
답글
8244
화면
Hi Ranjith,
xml
<button class="your-Class" ......... />
js
$('.your-Class').click(function(){
alert();
});
It seems very simple ... but it doesn't work for me (I'm using odoo 12.0 C.E.
관련 게시물 | 답글 | 화면 | 활동 | |
---|---|---|---|---|
|
1
7월 19
|
4728 | ||
|
2
8월 22
|
6546 | ||
|
1
7월 19
|
2981 | ||
|
0
11월 17
|
6363 | ||
|
4
9월 17
|
25124 |
Have you found any solution?