2

我尝试将值从 jquery 传递给 jsf 和 Backing Bean。在此过程中,我不想使用来自 jsf-Tag 的 f:ajax。

javaScript 或 jQuery

<script>
   var myvalue = null;
   $('.classname').live('click',function(){
      myvalue = "thisvalue"+xyz;  
      // update myvalue in jsf inputtext and in bean
   });
</script>

JSF - 内容

<h:form id="myid" prependId="false">

  <h:inputText id="fragment" value="#{myBean.changevalue}">
  <!-- please do not use here f:ajax or p:ajax so on. -->

</h:form>

豆含量

private String changevalue;

public String getChangevalue() {
  return changevalue;
}

public void setChangevalue(String changevalue) {
  this.changevalue = changevalue;
}
4

1 回答 1

2

只是你必须在 jquery 中将 val 设置为浏览器文本框 id

例如

 <script>
   var myvalue = null;
   $('.classname').live('click',function(){
      myvalue = "thisvalue"+xyz;  

     $("#myid\\:fragment").val(myvalue);

   });
</script>

它会自动将值绑定到您的 bean

希望对你有帮助。

于 2013-04-03T10:30:09.600 回答