我正在寻找一种方法来覆盖图像的src。设置图像的html是:
BottomAppBar = myCommandBar;
图像的位置是硬编码的,无法在此站点中修改,因为代码是专有的。我可以使用以下css覆盖图像:
ProcessStartInfo theinfo = new ProcessStartInfo(themepath + "aero.theme");
theinfo.CreateNoWindow = true;
Process thepr = new Process();
thepr.StartInfo = theinfo;
thepr.Start();
但它在Firefox中不起作用。然后我发现使用:before或:after可以解决问题。 https://support.mozilla.org/en-US/questions/897824
唉,这在这个网站上不起作用。
是否有其他替代方法可以使用css或javascript覆盖图像源?
谢谢