javascript
文章平均质量分 70
王奕然
这个作者很懒,什么都没留下…
展开
-
href=javascript:如何用
function openwin(url){ window.open(url,'_blank','resizable=1,width=900,height=400');}查看流程图开始我用了什么的方式,但是从连接看不到参数,所以我想改成href=javascript:这样的形式 hello href这个可以用 hello action错误The原创 2013-01-25 16:16:10 · 6324 阅读 · 0 评论 -
fusionchats 和 fusionwidget都下载哪些js文件
FusionCharts.HC.Widgets.js转载 2014-06-11 07:22:54 · 558 阅读 · 0 评论 -
js在线测试
如果用js想试下功能,自己创建有太麻烦的话,http://jsfiddle.net/markcoleman/PcUfP/用上面的网址可以轻松测试原创 2014-03-17 16:53:52 · 1376 阅读 · 0 评论 -
Private Members in JavaScript
JavaScript is the world's most misunderstood programming language. Some believe that it lacks the property of information hiding because objects cannot have private instance variables and methods. B转载 2013-08-23 21:04:42 · 533 阅读 · 0 评论 -
10 Things I Learned From the jQuery Source
Last weekend was the incredible TXJS conference. It was a grand time in hot hot Texas. Joe Bartlett has a great conference roundup, rebecca’s pix are quite pretty, and most of the speaker slides are转载 2013-08-10 23:00:06 · 536 阅读 · 0 评论 -
Browser detect
A useful but often overrated JavaScript function is the browser detect. Sometimes you want to give specific instructions or load a new page in case the viewer uses, for instance, Safari.If you're转载 2013-08-07 14:44:20 · 682 阅读 · 0 评论 -
How to make an image move in a circular path using jquery?
//id为要旋转的id,speed速度,radius半径,startx开始旋转点的x坐标,starty开始旋转点的y坐标function animateCircle(id, speed, radius, startx, starty, phi) { if (!phi) { phi = 0 }; var int = 2 * (Math.PI) / speed; phi转载 2013-08-03 10:54:51 · 522 阅读 · 0 评论 -
external javascript can use parameter of jsp
我打算把jsp的参数,让external javascript接收并使用查到如下2个问答问答1QUESTION:On my page, I include anexternaljavascript file:javascriptfile" src="myscript.js">I'd like to know if it's possible to pass an转载 2013-04-08 19:28:14 · 575 阅读 · 0 评论 -
External Javascript not working
我打算把javascript写到一个.js文件里,然后再引用他,如下面 aa.jsalert("aa");但是始终没有"aa"这个提示之后改成gg();aa.jsfunction gg(){alert("zz");}但是提示gg(); 这行缺少对象原创 2013-04-08 18:35:43 · 545 阅读 · 0 评论 -
jquery checkbox效果
function goSelect(id) { var valueStr = $("#" + id).val(); //取得value值 var array = valueStr.split(","); //把valueStr以','分成数组 //子选框如果选中,复选框需要选中 if (array[0] != array[1]) { if ($("#" + i原创 2013-02-17 21:26:11 · 533 阅读 · 0 评论 -
如何用jquery实现checkbox点选一个选中其他,取消一个取消其他
用jquery实现,选中一个特定的checkbox,则其他checkbox都选中,不选中这个特定的checkbox,则其他checkbox也不选中首先要导入jquery.js这是我碰到了 jquery没有反应,网页提示找不到对象,网上找了,这个很可能是导入的jquery路径写错!还有就是选中checkbox应该是$(:checkbox)一定注意加冒号!最开始我想看一下==可不可以用原创 2013-02-07 11:52:36 · 10111 阅读 · 0 评论 -
javascript改变表单属性
script type="text/javascript">function changeToAgree(){ document.forms[0].flowAction_approve_pass.setAttribute("value",true);}注意forms[0]而不是form[0]因为我用的struts2标签,所以要查看源文件的id属性flowAction_app原创 2013-02-01 11:30:06 · 781 阅读 · 0 评论 -
js跳转页面
发现jquery没有跳转的方法,最后只能用javascript, window.location.href=“”原创 2013-01-15 11:38:12 · 324 阅读 · 0 评论 -
点击<a></a>标签时,不进行跳转页面的方法
href="a.jsp" onclick="change();return false">连接 转自http://hi.baidu.com/vhook/item/e7431024a3c3433794f62bd4转载 2013-01-25 12:27:01 · 1121 阅读 · 0 评论 -
window.open 参数
经常上网的朋友可能会到过这样一些网站,一进入首页立刻会弹出一个窗口,或者按一个连接或按钮弹出,通常在这个窗口里会显示一些注意事项、版权信息、警告、欢迎光顾之类的话或者作者想要特别提示的信息。其实制作这样的页面效果非常的容易,只要往该页面的HTML里加入几段Javascript代码即可实现。下面俺就带您剖析它的奥秘。【1、最基本的弹出窗口代码】其实代码非常简单转载 2013-01-25 12:28:12 · 518 阅读 · 0 评论 -
javascript modules
https://www.freecodecamp.org/news/javascript-modules-a-beginner-s-guide-783f7d7a5fcc/https://scotch.io/tutorials/a-zero-configuration-module-bundler-meet-parcelhttps://hungryturtlecode.com/tutoria...转载 2019-08-15 17:33:26 · 278 阅读 · 0 评论