apex 4 点击事件帮助中的 Jquery

发布于 2024-11-17 14:54:53 字数 320 浏览 4 评论 0原文

我的 apex 应用程序中有一张图像,其 id 标签为submit_button。我想在用户尝试单击此图像但由于某种原因没有发生任何情况时显示警报。在页面的标题中我有这段代码

<script type="text/javascript">   

    $(document).ready(function() {
        $('#submit_button').click(function) {
           alert('hi');
        }
    });

</script>  

有什么想法吗?

I have an image that is in my apex application with the id tag of submit_button. I want to display an alert when the user tries to click this image but for some reason nothing is happening. In my header on the page I have this code

<script type="text/javascript">   

    $(document).ready(function() {
        $('#submit_button').click(function) {
           alert('hi');
        }
    });

</script>  

Any ideas?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

七禾 2024-11-24 14:54:53

我不知道为什么这不起作用(它对我也不起作用,我只是尝试过),但通过具有以下属性的动态操作非常简单:

  • 事件 = 单击
  • 选择类型 = DOM 对象
  • DOM 对象 = Submit_button
  • "True" 操作 = 执行 Javascript 代码
  • 在页面加载时触发 = (未选中)
  • 代码 = alert('hi');

I don't know why that doesn't work (it doesn't work for me either, I just tried), but it is very simple to do via a dynamic action with the following properties:

  • Event = click
  • Selection Type = DOM Object
  • DOM Object = submit_button
  • "True" Action = Execute Javascript Code
  • Fire on page load = (unchecked)
  • Code = alert('hi');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文