0

我一直在寻找答案,但我什么也没找到。

我有一个带有按钮的 JSF 页面。这个按钮调用一个 JavaScript 函数:

function postAdd(id) {
    var quant = document.getElementById("hell:quantite");
   $('<form action="addto.xhtml" method="POST">' + 
    '<input type="hidden" name="productkey" value="' + id + '">' +
    '<input type="hidden" name="howmany" value="' + quant.value + '">' +
    '</form>').submit();
}

这很好用,我已经测试过了。但是在我的 addto.xhtml 页面中,当我调用param.productkeyparam.howmany时,我什么也没得到。

我在其他页面上使用了这种方法并且工作正常,但在这里,它不起作用......

任何想法 ?

谢谢。

4

1 回答 1

0

答案是直接添加到 JSF 页面内的表单并获取所有参数#{function(param[form:idOfInput]}

于 2013-11-18T18:12:59.697 回答