如何在HTML工具提示的标题中附加值

时间:2017-09-29 05:43:40

标签: jquery ajax

我有像这样的HTML代码。

<input type="text" 
       id="cableless_plans_limit" 
       class="form-control list-text"
       onkeypress="return isNumber(event,127,1)" 
       placeholder="Plan No"
       data-toggle="tooltip" 
       data-placement="top"
       title="Cableless Plan No should be a integer less than" 
/>

和一个JavaScript,其中&#34; maxCblsPlans&#34;来自database

$('#cableless_plans_limit').attr("title", +response.maxCblsPlans);

如何将其附加到HTML标题,以便我可以获得类似的输出 当我在文本框中单击时,它应显示工具提示,如

无线计划否应该是小于7的整数(&#34; maxCblsPlans &#34;是7)

2 个答案:

答案 0 :(得分:3)

使用$('#cableless_plans_limit').attr("title");,您可以获取title参数的值。

$('#cableless_plans_limit').attr("title",     
   $('#cableless_plans_limit').attr("title") +response.maxCblsPlans);

答案 1 :(得分:2)

尝试将旧值转换为变量&amp;然后追加新的价值&amp;将其分配回来

var title = $('#cableless_plans_limit').attr("title");
title += response.maxCblsPlans;
$('#cableless_plans_limit').removeAttr("title")
$('#cableless_plans_limit').attr("title", title);

希望这会对你有所帮助。