我有一个在 WP7 C# 应用程序中使用的 javascript 函数,由于某种原因存在大小问题。截至目前,该功能正常工作,但我有三个项目显示为我的 webbrowser 控件顶部的菜单栏,它们不会根据我认为我会如何完成此操作来调整大小。我的功能的尺寸部分如下
Javascript
...
pf=doc.createElement('div');
pf.id='pf';
var s=pf.style;
s.position='absolute';
s.zIndex='999';
s.top=(scT||scBT)+'px';
s.left=(scL||scBL)+'px';
s.width='100%';
s.height='9%';
//s.backgroundColor='#FFFF00';
s.backgroundColor='green';
//var st = doc.createElement("P");
//p.style.height='50%';
//p.style.width='15%';
//text = doc.createTextNode('Search: ');
//p.appendChild(text);
//p.appendChild(doc.createTextNode('Search: '));
//pf.appendChild(p);
pf.appendChild(doc.createTextNode('Search: '));
qt=doc.createElement('input');
qt.id='qt';
qt.type='text';
qt.style.height='85%'
qt.style.width='50%';
pf.appendChild(qt);
var sb=doc.createElement('input');
sb.type='button';
sb.value='Find';
sb.style.height='100%';
sb.style.width='20%';
...
这样做的结果是在 webbrowser 页面顶部加载了一个栏,它充当在页面上查找功能。我已经根据正常工作的网页尺寸调整了 pf 的大小,并且我正在尝试制作pf.appendChild(doc.createTextNode('Search: '));
、qt=doc.createElement('input');
和的高度sb=doc.createElement('input');
匹配页面顶部显示的 pf 菜单栏的高度。到目前为止,只有 sb 的高度(设置为 100%)与 pf 的高度匹配,而将 qt 设置为 100% 与 pf 的高度不匹配(它根据当前显示的网页的高度尺寸而变化)。另外,我不知道是否有办法设置 pf.appendChild(doc.createTextNode('Search: ')); 的高度 虽然我尝试过的在上面被注释掉了。有没有办法让它们始终与 pf 菜单栏的高度相同?此外,在高度尺寸较大的页面上,文本太小以至于无法阅读,有没有办法相应地放大文本?