全部,我在 onclick 功能上添加输入框,如下所示
HtmlContent =HtmlContent+ "<input id = '" + uid + "' onkeypress='DefaultEnterButton(event,'imgGo')' class='jobCenterArea' type='text' onkeydown='IsNumeric(" + uid + ")' onclick ='getActiveElementId();' name='txtBoxSch_" + txtBoxCnt + "' /> " +
"<img src='/COSimages/BusPortal/custom-x.png' alt='Close Icon' height='14' width ='14' onclick=' Remove_TextBox(" + uid + ")'/> "+htmllabel;
上面的代码在 FF、chrome 和 safari 中运行良好,但在 IE [7 & 8] 中运行良好
我试过下面的代码,但不能在 IE 中工作
document.getElementById(uid).onkeypress = function(event){return DefaultEnterButton(event,'imgGo')};
[我想要实现的功能是,在用户输入关键字后,当他们按下回车键时,它不仅应该通过单击搜索按钮进入下一页] 有什么建议吗?
更新
解决方案正在替换'
为'
.
http://www.digimantra.com/tips/how-to-display-apos-in-internet-explorer-ie/
感谢大家的投入。