欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  移动技术

iOS 更改webView文字颜色丶文字大小丶背景色的方法

程序员文章站 2023-03-28 09:09:53
在webview的delegate回调方法 - (void)webviewdidfinishload:(uiwebview *)webview;中写上一下语句即可 //字体大小 [webv...

在webview的delegate回调方法 - (void)webviewdidfinishload:(uiwebview *)webview;中写上一下语句即可

//字体大小

[webview stringbyevaluatingjavascriptfromstring:@"document.getelementsbytagname('body')[0].style.webkittextsizeadjust= '330%'"];

//字体颜色

[webview stringbyevaluatingjavascriptfromstring:@"document.getelementsbytagname('body')[0].style.webkittextfillcolor= 'gray'"];

//页面背景色

[webview stringbyevaluatingjavascriptfromstring:@"document.getelementsbytagname('body')[0].style.background='#2e2e2e'"];