我正在尝试获取我所在页面的当前URL,我正在使用以下代码,它在console.log中正确显示..
我试图在jquery find()
中使用该变量来查找该url中是否存在某些变量,不执行该代码。
这是我的尝试:
var $hostname = window.location.href;
if(($hostname).find('vpictures')) {/* Do nothing */}
else {
var tt = new $.fn.dataTable.TableTools(oTable);
$(tt.fnContainer()).insertBefore('div.dataTables_wrapper');
}
为了运行它,我收到此错误:
TypeError: $hostname.find is not a function
if(($hostname).find('vpictures')) {/* Do nothing */}
答案 0 :(得分:1)
要获取现有单词,您只需使用
即可if($hostname.indexOf('vpictures') > -1){
//your script
}