You can’t view a web page’s source, and you can’t Command+F to search for text on the page, but you sure can get a debugging console to see the errors on the page. Here’s how:
Find and open th...
组件地址:http://www.gotproject.com/blog/post2.html
<script src=”webkitdragdrop.js” type=”text/javascript”></script>
<body>
<div id=”obj_id” style=”dd”>jjjjjjjjjjjjj...
<script type="text/javascript">
// <![CDATA[
var bForcepc = fGetQuery("dv") == "pc";
function fBrowserRedirect(){
var sUserAgent = navigator.userAgent.toLowerCase();
var bIsIpad = sUserA...
public static String Html2Text(String inputString) {
String htmlStr = inputString; //含html标签的字符串
String textStr =”";
java.util.regex.Pattern p_script;
java.util.regex.Matcher m_script;
java...
项目要在ipad下测试,发现iframe设置的高度和宽度都没用了,被里面的内容撑开了,怎么办。
网上搜了下比较适应的方法
1.在iframe外包个div 设置div的高度、宽度和overflow:auto; 如果这时两个手指touchmove还是不...
<p>测试strip_tags</p>
<br />
<a
name=”strip_tags”
id=”strip_tags”/>
<a
href=”http://yuenshui.com/”>野马</a>
<!– 看不到 –>
<script>
/*
* 过滤字...
iPad上没有鼠标,所以手指在触发触摸事件(TouchEvent)的时候,系统也会产生出模拟的鼠标事件(MouseEvent)。
这对于普通网页的浏览需求而言,基本可以做到与PC端浏览器无明显差异。但是如果你正在做一款与用户...
Java代码
import java.io.IOException;
import java.security.SecureRandom;
import javax.crypto.Cipher;
import javax.crypto.SecretKey;
import javax.crypto.SecretKeyFactory;
import javax.crypto.spec.DE...
一般sshd配置文件路径为/etc/ssh/sshd_config
添加一行:
GatewayPorts Yes
则允许远程主机连接到转发端口,相当于-g
重启sshd再重新建立tunnel即可
http://linux.chinaunix.net/techdoc/net/2007/01/01/947181.s...
1. 概述
本文主要包括以下几个方面:编码基本知识,java,系统软件,url,工具软件等。
在下面的描述中,将以”中文”两个字为例,经查表可以知道其GB2312编码是”d6d0 cec4″,Unicode编码
为”4e2d 6587...