1

我试图从类中的链接中提取标题属性并且遇到了一些麻烦:

<div class="menu">
<a href="#" title="4242" onclick="cselect()">United States</a>
<a href="#" title="4243" onclick="cselect()">Canada</a>
</div>

这是我尝试过的:

function cselect(){
    var countryID = $(this).attr("title");
    location.href = location.href.split("#")[0] + "#" +countryID;
    location.reload();
}

谢谢!

4

3 回答 3

3

传递this给您的内联处理程序:

function cselect(obj){
    var countryID = $(obj).attr("title");
    console.log(countryID);
}

<a href="#" title="4242" onclick="cselect(this)">United States</a>
<a href="#" title="4243" onclick="cselect(this)">Canada</a>

演示:http: //jsfiddle.net/yDW3T/

于 2013-10-29T15:42:40.033 回答
2

您必须引用单击的元素。this正如 tymeJV 建议的那样,一种方法是通过。

但是我会从一个单独的脚本块中设置事件处理程序,并且只引用当前元素。对于以下两种解决方案,都不onclick需要额外的内联属性。

/* using jQuery */
jQuery( '.menu a' ).on( 'click', function( event ) {
    event.preventDefault();

    var countryID = jQuery( this ).attr( 'title' ); // <-- !!!

    location.href = location.href.split( '#' )[0] + '#' + countryID;
    location.reload();

} );

或者

/* using plain JS */
var countryAnchors = document.querySelectorAll( '.menu a' );
for( var anchor in countryAnchors ) {
    anchor.addEventListener( 'click', function( event ) {
        event.preventDefault();

        var countryID = this.getAttribute( 'title' ); // <-- !!!

        location.href = location.href.split( '#' )[0] + '#' + countryID;
        location.reload();

    }, false );
}
/* todo: cross-browser test for compatibility on querySelectorAll() and addEventListener() */
于 2013-10-29T15:48:29.763 回答
0

它就像这样简单:

function cselect(){
    var countryID = $(this).attr("title");
    window.location.hash = countryID
    location.reload();
}
于 2013-10-29T15:44:16.267 回答