使用jquery comand

时间:2016-11-28 22:55:42

标签: jquery class drop-down-menu selector

我需要将文字更改为跨度。

我正在寻找这个,因为我有一个下拉菜单,我使用jQuery选择器选项,但这不会更改文本,只从选项中选择。

我需要改变" seleziona"与其他文字。

2 个答案:

答案 0 :(得分:1)

  1. 您可以进行更改活动
  2. 然后触发它
  3. 1

    $("#span1").on('change',function(){
     //Do calculation and change value of other span here
     $("#span2").text('calculated value');});
    

    2

    $("#span1").text('test').trigger('change'); 
    

答案 1 :(得分:0)

Srebnywilkun发布的答案是正确的。这个答案只提供了一个简短的表示法。

$("#span1").on('change',function(){
    $("#span2").text('calculated value');
}).change(); // defining this at the end of the function would automatically trigger the change event after the event is registered.