我想爲我的WordPress的商店(WooCommerce) - https://shop.sin.org.pl/sklep/做一個簡單的下拉菜單。JQuery下拉菜單不工作在WordPress的WooCommerce商店頁面
問題是,雖然下拉菜單顯示,但它應該返回的圖像不會。有誰知道如何強制顯示它旁邊的下拉?
代碼:https://pastebin.com/2ZcyKAh8
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<title>Testy</title>
<style type="text/css">
.box{
color: #000000;
padding: 0px;
display: none;
margin-top: 0px;
background-color: #ffffff;
text-align: center;
}
</style>
<script type="text/javascript" src="http://code.jquery.com/jquery.min.js"> </script>
<script type="text/javascript">
$(document).ready(function(){
$("select").change(function(){
$(this).find("option:selected").each(function(){
var optionValue = $(this).attr("value");
if(optionValue){
$(".box").not("." + optionValue).hide();
$("." + optionValue).show();
} else{
$(".box").hide();
}
});
}).change();
});
</script>
</head>
<body>
<div>
<select>
<option>Wybierz substancje</option>
<option value="1">LSD</option>
</select>
</div>
<div class="1 box">
<a href="http://sin.org.pl" target="_blank">
<img src="https://s14.postimg.org/s15q8k3u9/Untitled-1.jpg" />
</a>
</div>
</body>
</html>
在那個頁面上有太多的jQuery錯誤,我不知道從哪裏開始。您是否使用Firebug或瀏覽器內置的調試/ dom工具? –
Wordpress和Woocommerce ...我實際上可以編輯的代碼就是我在這裏粘貼的代碼。 – user3158006
該代碼的作品,應該優化,但工程...你能澄清這個問題嗎? – brasofilo