<div id="abc" onclick="location.href='/new-data/?asd=asd'">
</div>
我需要的输出是new-data
中的location.href
我将如何使用jQuery或JavaScript?
答案 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];
}