我需要一些幫助,這個jQuery代碼。我有一個SVG地圖,我需要一個點擊一個國家來選擇一個國家,並取消選擇另一個。有人能幫助我嗎? :) 這是代碼:jquery點擊功能選擇並取消選擇
<script type="text/javascript">//<![CDATA[
$(window).load(function(){
$(document).ready(function() {
$("path").mouseover(function() {
$(this).css('cursor', 'pointer');$(this).attr({
fill: "#FF0000",
stroke: "#00FF00"
});
$(this).css('cursor', 'pointer');
})
.mouseout(function(){
if(!$(this).data('clicked')){
$(this).attr({
fill: "#FFFFFF",
stroke: "#eee"
});
}
});
$("path").click(function() {
$(this).attr({
fill: "#FF0000",
stroke: "#00FF00"
});
$(this).data('clicked', true);
});
});
});//]]>
</script>
時加入一些類你不解釋你得到的是什麼問題或錯誤,這是一個很糟糕的問題,只是粘貼代碼。 – Nelson