重定向在台式机上工作正常,但在移动设备上不工作

时间:2019-11-14 06:13:40

标签: javascript jquery wordpress

我有一个网站,并且正在使用javascript代码重定向到页面。 重定向在台式机/笔记本电脑上工作正常,但无法在手机上重定向。 我已经尝试过此代码-

var selectedTreatment = $("#mytreatment").find(":selected").val();
alert(selectedTreatment + 'test');
var selectedurl = (selectedTreatment .replace(/\s/g,"-"));

location.href = ('http://thechirurgie.com/treatment/' + selectedurl) ;

当我尝试在台式机/笔记本电脑上发出警报时,它正在警告我(选择abc的abctestTreatment),但是在手机上,它仅在警告中表示selectedTreatment为空。

这就是为什么重定向在手机上无法正常工作的原因。解决方案是什么?

0 个答案:

没有答案