我是 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 时有效。
任何想法 ?
谢谢