+ -
当前位置:首页 → 问答吧 → xml数据岛在IE8无法显示

xml数据岛在IE8无法显示

时间:2011-04-15

来源:互联网

我的xml数据岛例子,在ie6上可以正常运行,IE8上为什么就显示不了啊 ?
student.xml:
XML code
<?xml version="1.0" encoding="GB2312" ?> 
<students>
    <student sid="1">
        <name>jack</name>
        <sex></sex>
        <score>45</score>
    </student>
    <student sid="2">
        <name>tom</name>
        <sex></sex>
        <score>75</score>
    </student>
    <student sid="3">
        <name>lucy</name>
        <sex></sex>
        <score>89</score>
    </student>
</students>

studentlist.html
HTML code
<html xmlns="http://www.w3.org/1999/xhtml">
<head></head>
<body>
   <xml id="stu" src="student.xml"></xml>
<table datasrc="#stu">
<tr>
    <td><input datafld="sid"/></td>
    <td><input datafld="name"/></td>
    <td><input datafld="sex"/></td>
    <td><input datafld="score"/></td>
</tr>
</table>
</body>
</html>


多谢回答,期待大家的回帖!

作者: wj297247649   发布时间: 2011-04-15

这种IE only 的东东还是少用吧。。。

作者: showbo   发布时间: 2011-04-15