使用javascript或jquery在rel和access中有多个值

时间:2014-03-23 15:39:43

标签: javascript jquery html

我想像下面那样进行检查,为此我想要2个值。这可以在rel中传递多个值。任何帮助都会很好。

<a href="#" rel='.$row['Table_ID']. 's''></a>

JS:

// Get current row id.
   var Row_id = $(this).attr('rel');

else if(SelectedTab == 'Drug Seizure')
{
    if(Row_id == 's')
    {

    }

    else
    {
        Table_name = "SOME";
        Column_name = "Some_ID";
    }
}

1 个答案:

答案 0 :(得分:2)

不要使用rel,对于与文档的关系,请使用rel。如果你使用html5,只需使用数据(你可以用于任何元素):

<div id="example" data-numbers="123" data-othervalue="abc"/>

alert( $('#example').attr('data-numbers') );
alert( $('#example').attr('data-othervalue') );
// Or
alert( $('#example').data('numbers') );
alert( $('#example').data('othervalue') );

向您展示另一种方法:

<div id="example" data-mixed="123,abc"/>
var info = $('#example').attr('data-mixed').split(","); // split on comma
alert( info[0] ); // 123
alert( info[1] ); // abc

如果您不能使用html5,则可以使用其他属性,例如标题,类或ID,并使用相同的策略。但那些应被视为例外。还必须指出,这是客户端。因此,你不能相信这个价值。始终检查服务器端。