Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
私はvisibility:visibleを維持したいのですが、現在は瞬間的に点滅してから消えます。
$(document).ready(function() { $('#subscribe').click(function(e) { $('#joinThanks').css('visibility', 'visible'); }) e.stopPropagation(); });
何か案は?
みんなありがとう。
e.stopPropagation()呼び出しは、クリック ハンドラー内に移動する必要があります。
e.stopPropagation()
$(document).ready(function() { $('#subscribe').click(function(e) { e.stopPropagation(); $('#joinThanks').css('visibility', 'visible'); }) });
これにより生成された構文エラーが原因で、おかしな動作が発生した可能性があります。