jQueryMobile 应用程序中左键单击按钮没有事件
我正在为 sfdc 构建一个移动应用程序。
我正在使用 apex 和 Visual Force 以及 jquery mobile js 来创建我的应用程序。
我使用了 apex:command 按钮和 apex:commandlink。
但是当我单击这些按钮时,不会生成事件,而当我右键单击按钮时,按钮将按要求运行
<apex:commandLink value="Save" action="{!HRSave}"/>
<!--<apex:commandbutton value="Save" style="font-style:italic" action="{!HRSave}"/>-->
i am building an mobile application for sfdc.
i am using apex and visual force and jquery mobile js to create my app.
i have used apex:command button and apex:commandlink.
but when i click those buttons the event is not generated , whereas when i right click on the button the button functions as required
<apex:commandLink value="Save" action="{!HRSave}"/>
<!--<apex:commandbutton value="Save" style="font-style:italic" action="{!HRSave}"/>-->
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
commandLink 工作但 commandButton 不工作吗?
您可以尝试通过 JavaScript 将其传递给 actionFunction 组件,或者查看 JavaScript Remoting。 jQuery 的远程处理非常出色。
Is commandLink working but commandButton not working?
You might try either passing it via JavaScript to an actionFunction component or look into JavaScript Remoting. Remoting is excellent with jQuery.