日期:2014-05-17 浏览次数:20514 次
<img id="Image3" src="~/images/hidebuttom-left.gif" /> $(document).ready(function () { $("#Image3").toggle(function () { $("#power").hide("slow"); $(this).attr("src","~/images/hidebuttom-right.gif"); }, function () { $("#power").show("slow"); $(this).attr("src","~/images/hidebuttom-left.gif"); }); });
------解决方案--------------------
换成
<img id="Image3" src="/images/hidebuttom-left.gif" />
$(document).ready(function () {
$("#Image3").toggle(function () {
$("#power").hide("slow");
$(this).attr("src","/images/hidebuttom-right.gif");
}, function () {
$("#power").show("slow");
$(this).attr("src","/images/hidebuttom-left.gif");
});
});