Javascript返回不适合UIWebView给定宽度和高度的内容/字符串

Posted

技术标签:

【中文标题】Javascript返回不适合UIWebView给定宽度和高度的内容/字符串【英文标题】:Javascript to return content/string which doesn't fit in given width and height of UIWebView 【发布时间】:2015-02-26 04:36:45 【问题描述】:

假设我的 div 中有一些字符串,

“这是我的 html 中的虚拟文本。这只是一个测试”

我会将它加载到 UIWebView,其中我的 webview width=100,height=20。现在假设只有 “This is a dummy text inside” 适合 webview。

现在我希望我的 javascript 将剩余的字符串返回给我“我的 html。这只是一个测试”(由于高度较低,不适合)。

在这里我不想调整我的 webview 的大小,我只想要不适合我的 UIWebView 的剩余字符串。

任何建议将不胜感激...

                                     ***I'm newbiew to javascript...

【问题讨论】:

【参考方案1】:

使用Below JS函数..它将返回溢出文本..

示例:

load_content('foo','Sample Text',30,100);


<script type="text/javascript">
    function load_content(div_tag_id,content_string,height,width)

        var text_fit = "";
        var text_overflow = "";
        var string_array = content_string.split(" ");

        for(var i = 0; i < string_array.length; i++ ) 

            document.getElementById(div_tag_id).style.width = width+"px";
            document.getElementById(div_tag_id).innerhtml = document.getElementById(div_tag_id).innerHTML + " "+string_array[i];
            if(document.getElementById(div_tag_id).offsetHeight > height) 
                text_overflow += " "+string_array[i];
             else 
                text_fit += " "+string_array[i];
            
        
        document.getElementById(div_tag_id).innerHTML = text_fit;
        return text_overflow;

       
</script>

【讨论】:

以上是关于Javascript返回不适合UIWebView给定宽度和高度的内容/字符串的主要内容,如果未能解决你的问题,请参考以下文章

UIWebview/WKWebView javascript调用处理两个返回值?

UIWebView 不适合设备屏幕

UIWebView 无法运行 JavaScript,因为 document.getElementById 返回 null

iOS:在 didFinishLoad 之后调整 UIWebView 的大小(内容应该适合而不滚动)

用于 JavaScript 的 UIWebView 或 WKWebkit?

swift 笔记:iOS与JavaScript的交互(一):UIWebView - 2.1本地对JavaScript的基本调用和获取返回值