这可能是非常基本的,但我仍然想弄清楚,因为我似乎无法弄清楚。
按钮
<a class="fusion-button button-flat button-square button-xlarge button-default button-40" target="_blank"><span class="fusion-button-text fusion-button-text-left">KÖP DITT CAMPINGKORT HÄR!</span></a>
我需要添加这个
<a href="Javascript://Camping Key Europe" onclick="CampingKeyEurope(' blank', 'sv')">Köp Camping Key Europe</a>
有些事情需要在下一个代码中改变,但是你明白了,我怎样才能让按钮工作,所以当他们按下它时它会打开模块?当我使用没有按钮且只有链接的第二个代码时,它工作正常,模块显示。
请帮助:)
答案 0 :(得分:2)
试试这个
<button type="button" class="fusion-button-text fusion-button-text-left"
onclick="CampingKeyEurope(' blank', 'sv')">Button Text</button>
建立Sterling Archer的注释,你应该在你的HTML之外附加事件监听器,所以如果你使用的是JQuery,在你的$(document).ready()函数中,你可以将你的onclick事件添加到你的按钮中这样:
$('.fusion-button-text.fusion-button-text-left').on('click', function() {});
答案 1 :(得分:0)
尝试使用事件监听器:
<a id="btn" class="fusion-button button-flat button-square button-xlarge button-default button-40" target="_blank">
<span class="fusion-button-text fusion-button-text-left">KÖP DITT CAMPINGKORT HÄR!</span>
</a>
document.getElementById('btn').onclick = function () {
CampingKeyEurope(' blank', 'sv');
};
答案 2 :(得分:0)
我建议在这里查看,非常有用:https://www.w3schools.com/jsref/event_onclick.asp