将内容从一个特殊字符获取到另一个特殊字符

时间:2013-07-01 11:42:40

标签: javascript jquery

<div id="abc" onclick="location.href='/new-data/?asd=asd'">
</div>

我需要的输出是new-data中的location.href 我将如何使用jQuery或JavaScript?

1 个答案:

答案 0 :(得分:0)

像这样的东西,因为div id是“abc”而onclick的值总是以

的形式出现

whatever/somedata/whatever

function GetTheContentFromOneSpecialCharacterToAnotherOne()
{
    var the_full_content = document.getElementById('abc').getAttribute('onclick');

    var the_parts = the_full_content.split('/');

    return the_parts[1];
}