0
這是一個簡單的show hide圖層腳本,當在圖像上顯示時 我想單擊圖像而不是按鈕,並且不想有醜陋的按鈕圖像morf或想添加一個CSS樣式覆蓋按鈕作爲一個按鈕但沒有按鈕圖像的圖像
我試圖分配圖像變量,但它沒有工作
<script src="http://ajax.googleapis.com/ajax/libs/jquery/1.10.2/jquery.min.js">
</script>
<script>
$(document).ready(function(){
$("button").click(function(){
$("#div1").fadeToggle(1000);
});
});
</script>
</head>
<body>
<br><br>
<button onclick="toggle();"><img src="image.gif" /></button>////---- works
<image onclick="toggle();"><img src="image.gif" /></image>//// ----doesnt
<div id="div1" style="width:80px;height:80px;background-color:blue;"></div>
或行爲分配給圖像