PHP网页添加JS代码有关问题
程序员文章站
2022-06-13 15:53:53
...
PHP网页添加JS代码问题
我在JS文件下建了一个文件"member_message_detail.js",代码如下.但在其它文件加载此文件却无法执行"",请帮忙大哥!
window.onload=function(){
var ret=document.getElementByld('return');
var del=document.getElementByld('delete');
ret.onclick=function(){
history.back();
};
del.onclick=function(){
if(confirm('你确定要删除此短信!')){
location.href='member_message_detail.php?action=delete&id='+this.name;
};
};
};
------解决思路----------------------
getElementById
不是
getElementByld
------解决思路----------------------
改成这样就可以了,你直接覆盖使用吧。
我在JS文件下建了一个文件"member_message_detail.js",代码如下.但在其它文件加载此文件却无法执行"",请帮忙大哥!
window.onload=function(){
var ret=document.getElementByld('return');
var del=document.getElementByld('delete');
ret.onclick=function(){
history.back();
};
del.onclick=function(){
if(confirm('你确定要删除此短信!')){
location.href='member_message_detail.php?action=delete&id='+this.name;
};
};
};
------解决思路----------------------
getElementById
getElementById
不是
getElementByld
------解决思路----------------------
改成这样就可以了,你直接覆盖使用吧。
window.onload=function(){
var ret=document.getElementById('return');
var del=document.getElementById('delete');
ret.onclick=function(){
history.back();
};
del.onclick=function(){
if(confirm('你确定要删除此短信!')){
location.href='member_message_detail.php?action=delete&id='+this.name;
};
};
}
相关文章
相关视频
上一篇: Javascript call和apply区别及使用方法_基础知识
下一篇: 创建型-原型模式