最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

javascript - change value of h:outputtext using jquery - Stack Overflow

programmeradmin0浏览0评论

i have one ponent OutputText , i want to change its value using jquery,

my ponent is,

<h:outputText id="txt_pay_days"  value="0" 
    binding="#{Attendance_Calculation.txt_pay_days}"/>

thanks for any help...

i have one ponent OutputText , i want to change its value using jquery,

my ponent is,

<h:outputText id="txt_pay_days"  value="0" 
    binding="#{Attendance_Calculation.txt_pay_days}"/>

thanks for any help...

Share Improve this question edited Apr 19, 2011 at 6:24 Jigar Joshi 241k42 gold badges409 silver badges446 bronze badges asked Apr 19, 2011 at 6:14 AnnuAnnu 5624 gold badges8 silver badges22 bronze badges
Add a ment  | 

3 Answers 3

Reset to default 7

<h:outputText> will be converted to <span> in raw HTML So,

Use id of the DOM and play with jQuery

${"#txt_pay_days"}.text("New Value To Set");

The <h:outputText> renders a HTML <span> with the value as its body.

<span id="txt_pay_days">0</span>

The jQuery .val() function works on HTML input elements like <input type="text"> only. The <span> isn't an input element at all. Instead, you need to use the jQuery .text() function.

$("#txt_pay_days").text("123");

try this..

$('#txt_pay_days').val('valueYouWantToInsert');
发布评论

评论列表(0)

  1. 暂无评论