私は jQuery の初心者ですが、jQuery ロード メソッド内でオブジェクトを実行すると、オブジェクトのプロパティ値を取得できない理由がわかりません。
問題を示す要約されたコードは次のとおりです。
jQuery.noConflict();
alert(jQuery('#some-tag').prop('title')); //Display the title value.
//Run a function when the page is fully loaded including graphics.
jQuery(window).load(function() {
alert(jQuery('#some-tag').prop('title')); //Display nothing (???)
});
ただし、 noConflict が関与していない場合は機能します。
何か案が ?
ありがとう