この同じ関数内に複数の文字列を作成し、このコードを Web サイト全体でより使いやすくしたいと考えています。
私のJSコードは次のようになります:
function() {$(".tool-tip-wrapper").click(function () {
$(".tool-tip",this).html("<img src='/images/ui-elements-sprite.png' class='top-arrow'><p>This is string one.</p><div class='close'></div>").toggle('fast');
});
私のhtmlコードは次のようになります。
<div class="tool-tip-wrapper"> click me
<div class="tool-tip"></div>
</div>