実際、HTMLページに2つのテキスト入力ボックスがあります。
<input id="input1" title="Text1">
<input id="input2" title="Text2">
次に、最初のテキスト入力ボックスを使用して、2番目の入力フィールドでライブ検証を行います...
ライブ検証の例ライブ検証
Jqueryでのライブ検証のサンプルコードを教えてください。jQuery( "#input2")。live('change'、function(){
if("#input1==#input2") {
alert('Both are same');
}
else{
alert('both are not same');
}
});
しかし、それはエラーです。