jQuery prop
0pt
var $link = $('#to_comments');
alert($link.attr('href')); // href属性の値を表示
alert($link.prop('href')); // hrefプロパティの値を表示
.attr() → #to_comment
.prop() → http://example.com/path/to/page#to_comment
0pt
var $link = $('#to_comments');
alert($link.attr('href')); // href属性の値を表示
alert($link.prop('href')); // hrefプロパティの値を表示
.attr() → #to_comment
.prop() → http://example.com/path/to/page#to_comment
コメントはまだありません