Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
document.getElementById('add').innerHTML=http://localhost/www/easyui-crud-demo/index.html;
你好上面是我在java脚本中使用的代码。当我点击按钮时,div(id是'add')应该被网格替换(index.html显示一个网格)。这是对的吗 ?请帮忙谢谢
谢谢
我会说“我的上帝”:),如果您认为从内部 HTML 分配中您期望加载 index.html 页面?
如果您通过 LINK 分配 div 的内容,则需要适当的 html 锚标记,例如
document.getElementById('add').innerHTML="<a href='http://localhost/www/easyui-crud-demo/index.html'>linkname </a>";
如果要加载内容,请使用 AJAX 或 IFRAME
例如IFRAME AND 让您走上正轨
希望这会帮助你。
原谅我的话:)