Android将Glide动态加载不同大小的图片切圆角与圆形的方法

Glide加载动态图片

首先我们先要去依赖一个githup:bumptech:glide:glide:3.7.0包;

使用Glide结合列表的样式进行图片加载:

1) 如果使用的是ListView,可以直接在Adapter的getView方法中使用:

@Override
 public View getView(int position, View convertView, ViewGroup parent) {
 if (null == convertView) {
  //.....
 }
 Glide
  .with(context)
  .load(imageUrls[position])
  .into(holder.imageView);
 return convertView;
 }

2)    如果使用的是RecyclerView,可以在Adapter的onBindViewHolder方法中使用:

@Override
 public void onBindViewHolder(RVViewHolder holder, int position) {

  Glide.with(MainActivity.this)
   .load(args[position])
   .into(holder.imageView);
 }

3)    当加载网络图片时,由于加载过程中图片未能及时显示,此时可能需要设置等待时的图片,通过placeHolder()方法:

Glide
 .with(context)
 .load(UsageExampleListViewAdapter.eatFoodyImages[0])
 .placeholder(R.mipmap.ic_launcher) // can also be a drawable
 .into(imageViewPlaceholder);

4) 当加载图片失败时,通过error(Drawable drawable)方法设置加载失败后的图片显示:

Glide
 .with(context)
 .load("http://futurestud.io/non_existing_image.png")
 .error(R.mipmap.future_studio_launcher) // will be displayed if the image cannot be loaded
 .into(imageViewError);

5)    图片的缩放,centerCrop()和fitCenter():

//使用centerCrop是利用图片图填充ImageView设置的大小,如果ImageView的
//Height是match_parent则图片就会被拉伸填充
Glide.with(MainActivity.this)
   .load(args[position])
   .centerCrop()
   .into(holder.imageView);

//使用fitCenter即缩放图像让图像都测量出来等于或小于 ImageView 的边界范围
//该图像将会完全显示,但可能不会填满整个 ImageView。
Glide.with(MainActivity.this)
   .load(args[position])
   .fitCenter()
   .into(holder.imageView);

6)    显示gif动画:

Glide
 .with( context )
 .load( gifUrl )
 .asGif() //判断加载的url资源是否为gif格式的资源
 .error( R.drawable.full_cake )
 .into( imageViewGif );

7)    显示本地视频

String filePath = "/storage/emulated/0/Pictures/example_video.mp4";
Glide
 .with( context )
 .load( Uri.fromFile( new File( filePath ) ) )
 .into( imageViewGifAsBitmap );

8)    缓存策略:

Glide
 .with( context )
 .load( Images[0] )
 .skipMemoryCache( true ) //跳过内存缓存
 .into( imageViewInternet );

Glide
 .with( context )
 .load( images[0] )
 .diskCacheStrategy( DiskCacheStrategy.NONE ) //跳过硬盘缓存
 .into( imageViewInternet );
  • DiskCacheStrategy.NONE 什么都不缓存
  • DiskCacheStrategy.SOURCE 仅仅只缓存原来的全分辨率的图像
  • DiskCacheStrategy.RESULT 仅仅缓存最终的图像,即降低分辨率后的(或者是转换后的)
  • DiskCacheStrategy.ALL 缓存所有版本的图像(默认行为)

9)    优先级,设置图片加载的顺序:

Priority.LOW
Priority.NORMAL
Priority.HIGH
Priority.IMMEDIATE 

private void loadImageWithHighPriority() {
 Glide
 .with( context )
 .load( mages[0] )
 .priority( Priority.HIGH )
 .into( imageViewHero );
}
private void loadImagesWithLowPriority() {
 Glide
 .with( context )
 .load( images[1] )
 .priority( Priority.LOW )
 .into( imageViewLowPrioLeft );
 Glide
 .with( context )
 .load( images[2] )
 .priority( Priority.LOW )
 .into( imageViewLowPrioRight );
}

10)    当不需要将加载的资源直接放入到ImageView中而是想获取资源的Bitmap对象:

//括号中的300,600代表宽和高但是未有作用
SimpleTarget target = new SimpleTarget<Bitmap>(300,600) {
  @Override
  public void onResourceReady(Bitmap resource, GlideAnimation<? super Bitmap> glideAnimation) {
   holder.imageView.setImageBitmap(resource);
  }
  };
  Glide.with(MainActivity.this)
   .load(args[position])
   .asBitmap()
   .into(target);

11)    集成网络栈(okHttp,Volley):

dependencies {
 // your other dependencies
 // ...
 // Glide
 compile 'com.github.bumptech.glide:glide:3.6.1'
 // Glide's OkHttp Integration
 compile 'com.github.bumptech.glide:okhttp-integration:1.3.1@aar'
 compile 'com.squareup.okhttp:okhttp:2.5.0'
}

dependencies {
 // your other dependencies
 // ...
 // Glide
 compile 'com.github.bumptech.glide:glide:3.6.1'
 // Glide's Volley Integration
 compile 'com.github.bumptech.glide:volley-integration:1.3.1@aar'
 compile 'com.mcxiaoke.volley:library:1.0.8'
}

好了,以上就是Glide动态加载图片的方法,下面开始本文的正文:

需求

Glide下载图片并切圆角或圆形,但图片有大有小,图片不能改变,切圆还好说,但是切圆角就会发现图片小的会比图片大的要圆
搜一下 " Glide动态加载圆形图片跟圆角图片 " 就会出现很多文章,但这些都不能解决上面的问题 怎样能 Glide动态加载不同大小的图片切圆形图片跟圆角图片呢?

解决很简单

既然是图片大小不一致而导致图片切出来不一样,那就把图片变的一样大小不就可以吗

申明一下我的代码也是在Glide动态加载圆形图片跟圆角图片搜出来的代码基础上修改的. 下面就是代码了.

build.gradle

apply plugin: 'com.android.application'

android {
 compileSdkVersion 26
 buildToolsVersion "26.0.2"

 defaultConfig {
 applicationId "cn.xm.weidongjian.glidedemo"
 minSdkVersion 15
 targetSdkVersion 26
 versionCode 1
 versionName "1.0"
 }
 buildTypes {
 release {
  minifyEnabled false
  proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
 }
 debug {
  minifyEnabled true
  proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
 }
 }
}
dependencies {
 compile fileTree(dir: 'libs', include: ['*.jar'])
 compile 'com.android.support:appcompat-v7:26.1.0'
 compile 'com.github.bumptech.glide:glide:3.6.1'
}

activity_main.xml

<RelativeLayout
  xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  android:paddingLeft="@dimen/activity_horizontal_margin"
  android:paddingRight="@dimen/activity_horizontal_margin"
  android:paddingTop="@dimen/activity_vertical_margin"
  android:paddingBottom="@dimen/activity_vertical_margin"
  tools:context=".MainActivity">

 <Button
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:text="正常图片"
 android:id="@+id/button"
 android:layout_alignParentTop="true"
 android:layout_centerHorizontal="true"/>

 <ImageView
 android:layout_width="72dp"
 android:layout_height="72dp"
 android:id="@+id/imageView"
 android:scaleType="fitCenter"
 android:layout_below="@+id/button"
 android:layout_alignRight="@+id/button"
 android:layout_alignEnd="@+id/button"
 android:layout_marginTop="150dp"/>

 <ImageView
 android:layout_width="72dp"
 android:layout_height="72dp"
 android:id="@+id/imageView2"
 android:scaleType="fitCenter"
 android:layout_below="@+id/imageView"
 android:layout_alignRight="@+id/imageView"
 android:layout_alignEnd="@+id/imageView"
 android:layout_marginTop="5dp"
 />

 <Button
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:text="圆角图片"
 android:id="@+id/button2"
 android:layout_below="@+id/button"
 android:layout_alignLeft="@+id/button"
 android:layout_alignRight="@+id/imageView"
 android:layout_alignEnd="@+id/imageView"/>

 <Button
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:text="大圆角图片"
 android:id="@+id/button3"
 android:layout_below="@+id/button2"
 android:layout_alignLeft="@+id/button2"
 android:layout_alignStart="@+id/button2"/>

 <Button
 android:layout_width="wrap_content"
 android:layout_height="wrap_content"
 android:text="圆形图片"
 android:id="@+id/button4"
 android:layout_below="@+id/button3"
 android:layout_alignLeft="@+id/button"
 android:layout_alignRight="@+id/button3"
 android:layout_alignEnd="@+id/button3"/>
</RelativeLayout>

MainActivity

package cn.xm.weidongjian.glidedemo;

import android.content.Context;
import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.view.View;
import android.view.View.OnClickListener;
import android.widget.ImageView;
import com.bumptech.glide.Glide;
import com.bumptech.glide.RequestManager;

public class MainActivity extends AppCompatActivity implements OnClickListener {

 private ImageView imageView;
 private RequestManager glideRequest;
 private Context context = this;
 private ImageView imageView2;

 @Override
 protected void onCreate(Bundle savedInstanceState) {
 super.onCreate(savedInstanceState);
 setContentView(R.layout.activity_main);
 init();
 }

 private void init() {
 findViewById(R.id.button).setOnClickListener(this);
 findViewById(R.id.button2).setOnClickListener(this);
 findViewById(R.id.button3).setOnClickListener(this);
 findViewById(R.id.button4).setOnClickListener(this);
 imageView = (ImageView) findViewById(R.id.imageView);
 imageView2 = (ImageView) findViewById(R.id.imageView2);
 glideRequest = Glide.with(this);
 }

 @Override
 public void onClick(View v) {
 switch (v.getId()) {
  case R.id.button:
  glideRequest.load("http://androidop.le890.com/hma/upload/2016/10/11/1704146358.png").into(imageView);
  glideRequest.load("http://androidop.le890.com/hma/upload/2016/10/11/1716089900.png").into(imageView2);
  break;
  case R.id.button2:
  glideRequest.load("http://androidop.le890.com/hma/upload/2016/10/11/1704146358.png").transform(new GlideRoundTransform(context)).into(imageView);
  glideRequest.load("http://androidop.le890.com/hma/upload/2016/10/11/1716089900.png").transform(new GlideRoundTransform(context)).into(imageView2);
  break;
  case R.id.button3:
  glideRequest.load("http://androidop.le890.com/hma/upload/2016/10/11/1704146358.png").transform(new GlideRoundTransform(context, 7)).into(imageView);
  glideRequest.load("http://androidop.le890.com/hma/upload/2016/10/11/1716089900.png").transform(new GlideRoundTransform(context, 7)).into(imageView2);
  break;
  case R.id.button4:
  glideRequest.load("http://androidop.le890.com/hma/upload/2016/10/11/1704146358.png").transform(new GlideCircleTransform(context)).into(imageView);
  glideRequest.load("http://androidop.le890.com/hma/upload/2016/10/11/1716089900.png").transform(new GlideCircleTransform(context)).into(imageView2);
  break;
 }
 }
}

GlideCircleTransform

package cn.xm.weidongjian.glidedemo;

import android.content.Context;
import android.graphics.Bitmap;
import android.graphics.BitmapShader;
import android.graphics.Canvas;
import android.graphics.Paint;
import com.bumptech.glide.load.engine.bitmap_recycle.BitmapPool;
import com.bumptech.glide.load.resource.bitmap.BitmapTransformation;

public class GlideCircleTransform extends BitmapTransformation {
 public GlideCircleTransform(Context context) {
 super(context);
 }

 @Override protected Bitmap transform(BitmapPool pool, Bitmap toTransform, int outWidth, int outHeight) {
 return circleCrop(pool, toTransform);
 }

 private static Bitmap circleCrop(BitmapPool pool, Bitmap source) {
 if (source == null) return null;

 int size = Math.min(source.getWidth(), source.getHeight());
 int x = (source.getWidth() - size) / 2;
 int y = (source.getHeight() - size) / 2;
 // TODO this could be acquired from the pool too
 Bitmap squared = Bitmap.createBitmap(source, x, y, size, size);

 Bitmap result = pool.get(size, size, Bitmap.Config.ARGB_8888);
 if (result == null) {
  result = Bitmap.createBitmap(size, size, Bitmap.Config.ARGB_8888);
 }

 Canvas canvas = new Canvas(result);
 Paint paint = new Paint();
 paint.setShader(new BitmapShader(squared, BitmapShader.TileMode.CLAMP, BitmapShader.TileMode.CLAMP));
 paint.setAntiAlias(true);
 float r = size / 2f;
 canvas.drawCircle(r, r, r, paint);
 return result;
 }

 @Override public String getId() {
 return getClass().getName();
 }
}

GlideRoundTransform

package cn.xm.weidongjian.glidedemo;

import android.content.Context;
import android.content.res.Resources;
import android.graphics.Bitmap;
import android.graphics.BitmapShader;
import android.graphics.Canvas;
import android.graphics.Matrix;
import android.graphics.Paint;
import android.graphics.RectF;
import android.util.Log;
import com.bumptech.glide.load.engine.bitmap_recycle.BitmapPool;
import com.bumptech.glide.load.resource.bitmap.BitmapTransformation;

public class GlideRoundTransform extends BitmapTransformation {

 private static float radius = 0f;

 public GlideRoundTransform(Context context) {
 this(context, 4);
 }

 public GlideRoundTransform(Context context, int dp) {
 super(context);
 this.radius = Resources.getSystem().getDisplayMetrics().density * dp;
 }

 @Override
 protected Bitmap transform(BitmapPool pool, Bitmap toTransform, int outWidth, int outHeight) {
 return roundCrop(pool, toTransform);
 }

 private static Bitmap roundCrop(BitmapPool pool, Bitmap source) {
 if (source == null) return null;
 Bitmap bitmap = changeBitmapSize(source);
 Bitmap result = pool.get(bitmap.getWidth(), bitmap.getHeight(), Bitmap.Config.ARGB_4444);
 if (result == null) {

  int width = bitmap.getWidth();
  int height = bitmap.getHeight();
  result = Bitmap.createBitmap(width,height, Bitmap.Config.ARGB_4444);
 }
 Canvas canvas = new Canvas(result);
 Paint paint = new Paint();
 paint.setShader(new BitmapShader(bitmap, BitmapShader.TileMode.CLAMP, BitmapShader.TileMode.CLAMP));
 paint.setAntiAlias(true);
 RectF rectF = new RectF(0f, 0f, bitmap.getWidth(), bitmap.getHeight());
 canvas.drawRoundRect(rectF, radius, radius, paint);
 return result;
 }
 public static Bitmap changeBitmapSize(Bitmap bitmap) {
 int width = bitmap.getWidth();
 int height = bitmap.getHeight();
 //设置想要的大小
 int newWidth=72;
 int newHeight=72;
 //计算压缩的比率
 float scaleWidth=((float)newWidth)/width;
 float scaleHeight=((float)newHeight)/height;
 //获取想要缩放的matrix
 Matrix matrix = new Matrix();
 matrix.postScale(scaleWidth,scaleHeight);
 //获取新的bitmap
 bitmap=Bitmap.createBitmap(bitmap,0,0,width,height,matrix,true);
 bitmap.getWidth();
 bitmap.getHeight();
 Log.e("newWidth","newWidth"+bitmap.getWidth());
 Log.e("newHeight","newHeight"+bitmap.getHeight());
 return bitmap;
 }

 @Override public String getId() {
 return getClass().getName() + Math.round(radius);
 }
}

很简单吧,就是用changeBitmapSize方法把图片压缩到72*72的这样图片都一样大了,在切就不会出现切出来的图片效果不一样了

最后代码(dome)

github地址: https://github.com/liang9/Imagedome

本地下载地址:http://xiazai.jb51.net/201711/yuanma/Imagedome(jb51.net).rar

总结

以上就是这篇文章的全部内容了,希望本文的内容对大家的学习或者工作具有一定的参考学习价值,如果有疑问大家可以留言交流,谢谢大家对我们的支持。

(0)

相关推荐

  • Android中Glide获取缓存大小并清除缓存图片

    清除Glide缓存 Glide自带清除缓存的功能,分别对应Glide.get(context).clearDiskCache();(清除磁盘缓存)与Glide.get(context).clearMemory();(清除内存缓存)两个方法.其中clearDiskCache()方法必须运行在子线程,clearMemory()方法必须运行在主线程,这是这两个方法所强制要求的,详见源码. 获取Glide缓存空间大小 这个网上也有过一些介绍,但是给出的实现代码存在一些问题,我这里做了一定的修改.一下方法

  • Android利用Glide获取图片真正的宽高的实例

    前言 有时候需要获取网络图片的宽高来设置图片显示的大小,很多人会直接利用Glide的加载监听去拿图片的宽高,但是这样拿到的不是图片真正的宽高,而是图片显示在ImageView后的宽高.如下: //获取图片显示在ImageView后的宽高 Glide.with(this) .load(imgUrl) .asBitmap()//强制Glide返回一个Bitmap对象 .listener(new RequestListener<String, Bitmap>() { @Override public

  • Android中Glide获取图片Path、Bitmap用法详解

    我们在此之前给大家介绍过图片加载框架Glide的基本用法介绍,大家可以先参考一下,本篇内容更加深入的分析了Glide获取图片Path.Bitmap用法,以及实现的代码分析. 1. 获取Bitmap: 1)在图片下载缓存好之后获取 Glide.with(mContext).load(url).asBitmap().into(new SimpleTarget<Bitmap>() { @Override public void onResourceReady(Bitmap resource, Gli

  • Android基于Glide v4.x的图片加载进度监听

    Glide是一款优秀的图片加载框架,简单的配置便可以使用起来,为开发者省下了很多的功夫.不过,它没有提供其加载图片进度的api,对于这样的需求,实现起来还真颇费一番周折. 尝试 遇到这个需求,第一反应是网上肯定有人实现过,不妨借鉴一下别人的经验. Glide加载图片实现进度条效果 可惜,这个实现是基于3.7版本的,4.0版本以上的glide改动比较大,using函数已经被移除了 using() The using() API was removed in Glide 4 to encourage

  • Android添加glide库报错Error: Failed to resolve: com.android.support:support-annotations:26.0.2的解决

    前言 Glide是 Google推荐的图片加载库,它可以支持来自url,Android资源,文件,Uri中的图片加载,同时还支持gif图片的加载,以及各种图片显示前的bitmap处理(例如:圆角图片,圆形图片,高斯模糊,旋转,灰度等等),缓存处理,请求优先级处理,动画处理,缩略图处理,图片大小自定义等等.可谓是非常的强大. 在Glide的使用方面,它和Picasso的使用方法是比较相似的,并且他们的运行机制也有很多相似的地方,很多博文会把二者进行比较,此文也采取一样的方式,通过比较二者来学习他们

  • 详解Android中Glide与CircleImageView加载圆形图片的问题

    最近在项目中遇到了一个奇怪的问题,Glide和CircleImageView一起使用加载圆形头像,发现第一次死活都加载出来,出来的是一张占位图,当你刷新的时候或者第二次进入的时候才能加载出来.究其原因,CircleImageView 把位置占了.这时候我们有如下4种解决方案,不管是哪一种都是可以解决的(亲测可行). 1. 不使用占位符 注释掉这两句代码即可. .placeholder(R.drawable.normal_photo) .error(R.drawable.normal_photo)

  • Android中Glide库的使用小技巧总结

    简介 在泰国举行的谷歌开发者论坛上,谷歌为我们介绍了一个名叫 Glide 的图片加载库,作者是bumptech.这个库被广泛的运用在google的开源项目中,包括2014年google I/O大会上发布的官方app. https://github.com/bumptech/glide 简单使用  dependencies { compile 'com.github.bumptech.glide:glide:3.7.0' } 如何查看最新版本 http://search.maven.org/#se

  • android中Glide实现加载图片保存至本地并加载回调监听

    Glide 加载图片使用到的两个记录 Glide 加载图片保存至本地指定路径 /** * Glide 加载图片保存到本地 * * imgUrl 图片地址 * imgName 图片名称 */ Glide.with(context).load(imgUrl).asBitmap().toBytes().into(new SimpleTarget<byte[]>() { @Override public void onResourceReady(byte[] bytes, GlideAnimation

  • Android将Glide动态加载不同大小的图片切圆角与圆形的方法

    Glide加载动态图片 首先我们先要去依赖一个githup:bumptech:glide:glide:3.7.0包: 使用Glide结合列表的样式进行图片加载: 1) 如果使用的是ListView,可以直接在Adapter的getView方法中使用: @Override public View getView(int position, View convertView, ViewGroup parent) { if (null == convertView) { //..... } Glide

  • Android开发中ImageLoder加载网络图片时将图片设置为ImageView背景的方法

    本文实例讲述了Android开发中ImageLoder加载网络图片时将图片设置为ImageView背景的方法.分享给大家供大家参考,具体如下: 最近开始接触到android的开发,在开发中使用ImageLoder加载网络图片,但是框架加载的图片默认是通过ImageView的src属性设置,所以在某些场合是不符合需求,比如通过设置src在某些场景下是不能填充满整个ImageView,但是通过设置背景就可以实现,而框架并没有提供将图片设置为背景的方法,我在网上找了半天也看到了一些解决方案,但不是我想

  • Android中的动态加载机制的学习研究

    在目前的软硬件环境下,Native App与Web App在用户体验上有着明显的优势,但在实际项目中有些会因为业务的频繁变更而频繁的升级客户端,造成较差的用户体验,而这也恰恰是Web App的优势.本文对网上Android动态加载jar的资料进行梳理和实践在这里与大家一起分享,试图改善频繁升级这一弊病. Android应用开发在一般情况下,常规的开发方式和代码架构就能满足我们的普通需求.但是有些特殊问题,常常引发我们进一步的沉思.我们从沉思中产生顿悟,从而产生新的技术形式. 如何开发一个可以自定

  • Android中利用动态加载实现手机淘宝的节日特效

    相信去年圣诞节打开过手机淘宝的童鞋都会对当时的特效记忆犹新吧:全屏飘雪,旁边还有个小雪人来控制八音盒背景音乐的播放,让人有种身临其境的感觉,甚至忍不住想狠狠购物了呢(误),大概就是下面这个样子滴: 嗯,确实很炫,那么我们一步步去分析是如何实现的: 一.实现下雪的 View 首先,最上面一层的全屏雪花极有可能是一个顶层的View,而这个View是通过动态加载去控制显示的(不更新淘宝也能看到这个效果).那么我们先得实现雪花效果的 View,人生苦短,拿来就用.打开 gank.io,搜索"雪花&quo

  • vue中img src 动态加载本地json的图片路径写法

    目录: 注意:本地json文件和json文件里的图片地址都必须写在static 静态文件夹里:否则json文件里的url地址找不到. major_info.json文件里的图片路径写法 页面通过v-bind的方式加载: PS:vue中图片src路径赋值 vue中引入static文件夹中图片,本以为src中直接写入图片所在路径即可,结果发现图片无法显示,控制台报404错误,图片无法找到.网上找到解决方案,在此mark一下,以便以后查询. 图片src路径动态赋值 <img class="thu

  • Android的Glide库加载图片的用法及其与Picasso的对比

    Glide Glide是一个高效.开源. Android设备上的媒体管理框架,它遵循BSD.MIT以及Apache 2.0协议发布.Glide具有获取.解码和展示视频剧照.图片.动画等功能,它还有灵活的API,这些API使开发者能够将Glide应用在几乎任何网络协议栈里.创建Glide的主要目的有两个,一个是实现平滑的图片列表滚动效果,另一个是支持远程图片的获取.大小调整和展示. Glide 3.0版本以后加入了多项重要功能,同时还支持使用Gradle以及Maven进行构建.该版本包括很多值得关

  • Android实现listview动态加载数据分页的两种方法

    在android开发中,经常需要使用数据分页,比如要实现一个新闻列表的显示,或者博文列表的显示,不可能第一次加载就展示出全部,这就需要使用分页的方法来加载数据,在android中Handler经常用来在耗时的工作中,它接收子线程发送的数据,并使用数据配合更新UI,AsyncTask是在一个线程中执行耗时操作然后把结果传给UI线程,不需要你亲自去管理线程和句柄. 一.使用Handler+线程方法 1.基础知识 Handler在android系统中,主要负责发送和接收消息,它的用途主要有以下两种:

  • 动态加载iframe时get请求传递中文参数乱码解决方法

    当用户的页面需要动态加载iframe 时, 如果iframe的src中包传中文参数会出现编码错误:必须加编码,然后再解码. 编码:encodeURI(encodeURI("包含中文的串")) 解码:java.net.URLDecoder.decode("需要解码的串","utf-8"); 解决方案 使用 encodeURI('中文') 进行编码操作, js代码: 复制代码 代码如下: $(function() { $('#frame').attr

  • 三种动态加载js的jquery实例代码另附去除js方法

    复制代码 代码如下: !-- 这里为你提供了三种动态加载js的jquery实例代码哦,由于jquery是为用户提供方便的,所以利用jquery动态加载文件只要一句话$.getscript("test.js");就ok了. <!doctype html public "-//w3c//dtd xhtml 1.0 transitional//en" "http://www.w3.org/tr/xhtml1/dtd/xhtml1-transitional.

随机推荐