0
我在word中構建主題,並且我希望我的模態鏈接到菜單鏈接。我試圖在j中使用j query在Li中添加數據切換,但沒有發生任何結果。使用jquery動態添加li中的數據切換和數據目標
<script type="text/JavaScript">
j Query("#menu-item-135").add("data-toggle", modal);
});
</script>
我在word中構建主題,並且我希望我的模態鏈接到菜單鏈接。我試圖在j中使用j query在Li中添加數據切換,但沒有發生任何結果。使用jquery動態添加li中的數據切換和數據目標
<script type="text/JavaScript">
j Query("#menu-item-135").add("data-toggle", modal);
});
</script>
使用此代碼,它會在你的菜單中添加屬性
<script type="text/JavaScript">
$(document).ready(function(){
$("#menu-item-69").attr("data-toggle",'modal');
});
</script>