取域名可以使用:
host = window.location.host;
alert(host);
host = document.domain;alert(host);
取完整地址使用:
url = window.location.href;alert(url);u[......]
取域名可以使用:
host = window.location.host;
alert(host);
host = document.domain;alert(host);
取完整地址使用:
url = window.location.href;alert(url);u[......]
来自:https://stackoverflow.com/questions/3420004/
iframe中的js代码如下:
<SCRIPT LANGUAGE="JavaScript">
var url = (window.locatio[......]
示例:
for (var i=0;i<check_box_num;i++){
eval('item_check'+(i+1)+'='+tr_obj.find('.kw .check_box').eq([......]
聊起这个,露怯了,所以整理了下资料,以备积累:
JS具有阻塞特性,当浏览器在执行js代码时,不能同时做其它事情,即每次出现<script>都会让页面等待脚本的解析和执行(不论JS是内嵌的还是外链的),JS代码执行完成后,才继续渲染页面。由于,[……]
<script type="text/JavaScript">
var str="Welcome to Microsoft! "
str=str + "We are proud to announce that[......]
var left=parseInt($(this).css('left'));
如上代码没,利用了parseInt将取值进行了强制类型转换为了数值。
还有个办法就是replace掉。
var left=parseInt($(this).css(&[......]
1.JavaScript正则检测邮箱格式
2.只含有汉字、数字、字母、下划线不能以下划线开头和结尾3.只能输入英文字母和数字,不能输入中文
s.replace(/[^w./]/ig,'');
4.只含有汉字、数字、字母、下划线,下划线位置[……]
confirm|确认取消提示框示例代码:
var bln = window.confirm("确定吗 ");
alert(bln);
alert|提示框示例代码:
window.alert("这就是提示信息");
prompt[……]
同样是需要用到的一个检查的部分,总结整理如下:
var reg = /^w+((-w+)|(.w+))*@[A-Za-z0-9]+((.|-)[A-Za-z0-9]+)*.[A-Za-z0-9]+$/;
if (!reg.test(检测的字符串)) {
alert[......]