jQueryコードは
$(document).ready(function() {
if (navigator.appVersion.indexOf("Win") != -1) {
// Computers runs windows
$("a[href$='.pdf']").each(function() {
this.href = this.href.replace("Volumes", "KP01DS0194TG");
});
}
if (navigator.appVersion.indexOf("Mac") != -1) {
// computer is a Mac
$("a[href$='.pdf']").each(function() {
this.href = this.href.replace("KP01DS0194TG", "Volumes");
});
}
});
窓側のスラッシュを取り除くために必要ですが、どうすればよいですか?
私のリンクは次のとおりですhref="file:///KP01DS0194TG/Quotes/Scanning/brother/Jobsheets/job no 12538.pdf">12538</a>
。ボリュームのあるMacの場合は問題ありませんが、PCの場合は「file:// KP01DS0194TG」として必要です。スラッシュを削除するにはどうすればよいですか?