<apex:page controller="MyController" sidebar="false">
<apex:form >
<apex:inputText size="36" value="{!Str}"/>
<apex:commandButton onClick="alert('{!Str}');" value="Alert"/>
</apex:form>
代码只是弹出一个警告窗口来显示输入。但是,使用Salesforce apex似乎无法实现这一点,因为它是服务器端语言。我是对的吗?
答案 0 :(得分:2)
你可以通过javaScript或jQuery选择它的新值。
apex:inputText styleClass =“str”value =“{!Str}”
'警报($('。STR ')。值())'