现在我想获得唯一的参数。但当请求发送div当前页面时显示。
jQuery('#sah_form a').click(function(e){
e.preventDefault();
var href = jQuery(this).attr('href');
href = ( href.indexOf('ajax=true') > 0 ) ? href : href + '&ajax=true';
jQuery.get(href, function (data) {
jQuery('div#href').html(data);
});
});
});
echo '<div id="href">';
echo '<b>'.$_GET['subsection'].'</b>';
echo '</div>';
我需要一些帮助