html 看起来像这样:
<ul class="categoryitems">
<li><a data-url="../po/browse_po.php" href="welcome.php" target="main">PURCHASE ORDERS</a></li>
<li><a data-url="../po/po_email_config.php" href="welcome.php" target="main">PO EMAILS</a></li>
</ul>
忽略它们不相关的href。我计划防止他们违约。
相关的是jquery失败:
$('a').click(function()
{
alert($(this).parent().html()); //shows the a tag with the data-url attribute
//$(this).data('url',"..someurl.com");
alert($(this).data('url')); //returns undefined; when the previous line is uncommented works
alert($(this).attr('data-url')); //this works
});
如果它有所不同,则单击功能将包含在以下内容中:
$("#wndNavbar").ready( function() {
});
因为它在一个框架中:
<frameset cols="<?=$gl_navbar_width?>,*" frameborder="0" framespacing="5" border="0">
<frame id="wndNavbar" name="wndNavbar" src="nav_bar.php" scrolling="auto" marginheight="0" noresize>
<frame name="main" src="welcome.php" scrolling="auto" marginheight="0" noresize>
</frameset>