jQueryの新機能です。私は関数に値を渡そうとしています。jQuery "this" issue
<div class="the_service" id="ecommerce" onClick="javascript: gorightthere(ecommerce);">
function gorightthere(this){
var gothere = $('h2[name="'+this+'"]');
if (gothere.length){
$('html, body').animate({
scrollTop: gothere.offset().top
}, 2000);
removeClass('selected');
gothere.addClass('selected');
}
};
私がしようとしているのは、 "eコマース"という値を関数に渡すことです。私は渡すべき多くの異なる値を持っているので "this"を使用したいと思います。そして、私はonClickイベントの後に渡すすべての値で動作する関数を実行したいと思います。
助けが必要ですか?
おかげ
jsの前に 'javascript:'を入れる必要はありません – mrtsherman