<script src = "https://ajax.googleapis.com/ajax/libs/jquery/1.6.4/jquery.min.js"></script>
<script type="text/javascript">
//waits till the document is ready
$(document).ready(function() {
//onclick function
$('button.butter').click(function(){
//code will only run on certain url
if (pathname.indexOf("google")>= 0){
alert('This doesn't work anymore!');
//replacer
$("a[href*='https://google.com']").attr('href',('http://www.google.com/search?q' + $('#FormID').val()));
}
else{
alert('Wrong page');
}
});
});
</script>
它没有提醒,但为什么?这工作得早,我忘了保存它。它应该用另一个url和字段中的值替换url。编辑:head,html等标签就在那里。
<button class="butter">Press</button>
答案 0 :(得分:0)
你没有在任何地方声明pathname
,这个:
if (pathname.indexOf("google")>= 0){
应导致控制台出错。
答案 1 :(得分:0)
我认为你想要location.pathname
而不是pathname