-2

以下の2つのセレクターがあります。"render"にセレクターを追加すると"comp1"の位置が少し下がり、"comp1 "の位置が変わるたびに関数を実行したい。

change イベントにバインドしてみましたが、思いどおりに動作しません。

<div id="render" >
<div id="comp1" >

私が試したJS部分は次のとおりです。

function doUpdate(e){
    console.log("Component is updated "+e);
}
// capture change in the component
$('#comp1).bind('change', doUpdate);
4

1 に答える 1