function savepic(obj) { if (memFileObj != undefined) { obj = memFileObj; } else { memFileObj = obj; } if (document.all.a1 == null) { objIframe = document.createElement("IFRAME"); $(objIframe).appendTo("body"); objIframe.outerHTML = &qu…
js点击左右滚动+默认自动滚动类 点击下载…
js去掉浏览器右键点击默认事件 1.阻止整个页面所有的右击事件 document.oncontextmenu = function(){ return false;} 2.特定的区域/元素 document.getElementById("test").oncontextmenu = function(e){ return false;} 3.去掉以后给需要的区块加特定的事件 js: document.getElementById("test").onmousedo…
JS 冒泡事件   首先讲解一下js中preventDefault和stopPropagation两个方法的区别: preventDefault方法的起什么作用呢?我们知道比如<a href="http://www.baidu.com">百度</a>,这是html中最基础的东西,起的作用就是点击百度链接到http://www.baidu.com,这是属于<a>标签的默认行为,而preventDefault方法就是可以阻止它的默认行为的发生而发生其他的…
body { font-family: "Microsoft YaHei UI","Microsoft YaHei",SimSun,"Segoe UI",Tahoma,Helvetica,Sans-Serif,"Microsoft YaHei", Georgia,Helvetica,Arial,sans-serif,宋体, PMingLiU,serif; font-size: 10.5pt; line-height: 1.5;…
package com.allin.pc;import java.util.NoSuchElementException;import org.openqa.selenium.By;import org.openqa.selenium.JavascriptExecutor;import org.openqa.selenium.SearchContext;import org.openqa.selenium.StaleElementReferenceException;import org.ope…
js阻止浏览器默认行为 <!DOCTYPE html> <html> <head> <meta charset="UTF-8"> <title></title> </head> <body> <a id="a1" href="http://www.baidu.com">百度</a> <script> function…
需求和代码如下: “这是我的代码:” 1: <input type="text" id="price2" value="333"/> 2: <input type="text" id="trueprice" value="" /> 3: 4: 5: <script type="text/javascript"> 6: documen…
1.设置UIButton的文字居右显示 [button setContentHorizontalAlignment:UIControlContentHorizontalAlignmentRight]; 2.去掉点击默认置灰效果 [button setAdjustsImageWhenHighlighted:NO]; // default is YES. if YES, image is drawn darker when highlighted(pressed)…
1. JS的replace默认只替换第一个匹配项. 解决方法: 使用正则表达式进行匹配替换[   ①.replace(new RegExp(②,"g") ,③);   ] ①:包含替换的子字符串的变量名称. ②:被替换的字符串的变量名称. ③:替换成的字符串的变量名称.…