alert去掉ip
function alertw(name){
var iframe = document.createElement("IFRAME");
iframe.style.display="none";
iframe.setAttribute("src", 'data:text/plain,');
document.documentElement.appendChild(iframe);
window.frames[0].window.alert(name);
iframe.parentNode.removeChild(iframe);
}
禁用enter键提交
$(document).keydown(function(event){
if(event.keyCode == 13) {
return false;
}
});
1846

被折叠的 条评论
为什么被折叠?



