我是jQuery的新手。我正在嘗試將一個值傳遞給一個函數。jQuery「這個」問題
<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');
}
};
我想要做的是將價值「電子商務」傳遞給函數。我想使用「this」是因爲我有許多不同的值可以傳遞,我想要做一個函數來處理在onClick事件之後傳遞的每個值。
任何幫助?
感謝
你不需要在你的js前面包含'javascript:' – mrtsherman