对于菜单小部件/如何在HOVER上具有子菜单触发器而不是单击?! 如果没有,我该如何使用自定义代码/也许是JS ...?
不确定在此使用的JS代码是否很热门/这是一个WordPress,ELEMENTOR菜单小部件/就是该子菜单中的HTML //是否有任何可能的方式来操纵此HTML中的任何内容以制作一个悬停该菜单项时将触发单击的JS代码??
这是我的开发人员工具inspect元素中的代码:
<receiver
android:name=".receiver.Receiver_Admin"
android:label="Sehne"
android:permission="android.permission.BIND_DEVICE_ADMIN">
<meta-data
android:name="android.app.device_admin"
android:resource="@xml/device_admin" />
<intent-filter>
<action android:name="android.app.action.DEVICE_ADMIN_ENABLED" />
</intent-filter>
</receiver>
<activity
android:name=".MainActivity"
android:launchMode="singleTop"
android:theme="@style/LaunchTheme"
android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale|layoutDirection|fontScale|screenLayout|density|uiMode"
android:hardwareAccelerated="true"
android:windowSoftInputMode="adjustResize">
<!-- This keeps the window background of the activity showing
until Flutter renders its first frame. It can be removed if
there is no splash screen (such as the default splash screen
defined in @style/LaunchTheme). -->
<meta-data
android:name="io.flutter.app.android.SplashScreenUntilFirstFrame"
android:value="true" />
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
<category android:name="android.intent.category.DEFAULT"/>
</intent-filter>
</activity>