0

Opera 10.7 で window.location を使用する際の問題を知っている人はいますか。ハッシュ、検索、さらには href プロパティを変更できないようです。window.location を使用して指示したことを完全に無視しているようです。

そして、誰かが提案する前に、いいえ、Opera の新しいバージョンへのアップグレードはオプションではありません。はい、10.7 が公式にリリースされた Opera のバージョンではないことは知っていますが、それを使用するかどうかは私の選択ではありません。

4

1 に答える 1

0

これをwhatever.xhtmlとして保存し、BOM (バイト オーダー マーク) を付けて保存しないようにしてください。よくわからない場合は、SuperEdi (フリーウェア) を使用して保存し、保存ダイアログでチェックを外してください。

これは一目瞭然です。オブジェクトをクリックすると、使用するブラウザーに関係なく、すべての子オブジェクトが一覧表示されます (Opera 10.7 はテスト リリースを超えていないため、コピーを持っていません。彼らは Opera 11.0 に直行しました)。

サポートが必要な場合はお知らせください。

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "http://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en">
<head>
<title>Opera 10.7</title>
<script type="application/javascript">
//<![CDATA[
function dom_list(o)
{
 if (eval(o)==undefined) {alert('Error: that is not a valid object.');}
 else if (document.getElementById(o) && document.getElementById(o).childNodes.length>1)
 {
  change_toggle(o+'_children','overflow','hidden');
 }
 else
 {
  var dom_list = new Array();

  for (var a in eval(o)) {dom_list.push(a);}
  dom_list.sort();

  if (eval('typeof '+o+'.'+dom_list[i])=='function') {ao = o+'()';}
  else {ao = o;}
  var d1 = document.createElement('div');
  d1.setAttribute('id',ao+'_children');

  for (var i=0; i<dom_list.length; i++)//
  {
   if (eval('typeof '+o+'.'+dom_list[i])=='function')
   {
    ao = o+'.'+dom_list[i]+'()';
    var ab = ao.split('()')[0];
    ah = 'javascript:try{alert('+ao+'+\'/\n/\n\'+'+ab+');} catch(err) {alert('+ab+'(\'A test string.\'));}';
   }
   else
   {
    ao = o+'.'+dom_list[i];
    ah = 'javascript:dom_list(\''+ao+'\');';
   }

   var d2 = document.createElement('div');
   d2.setAttribute('id',ao);
   var a1 = document.createElement('a');

   a1.setAttribute('href',ah);
   var n2 = document.createTextNode(ao);
   a1.appendChild(n2);
   d2.appendChild(a1);
   d1.appendChild(d2);
  }

  document.getElementById(o).appendChild(d1);
 }
}

function change(id,newClass)
{
 if (document.getElementById(id)) {document.getElementById(id).className=newClass;}
 else if (id) {id.className=newClass;}
 else {alert('Error: the id \''+id+'\' was not found or has not yet been imported to the DOM.\n\nNew class intended: '+newClass);}
}

function change_toggle(id,c1,c2)
{
 if (document.getElementById(id))
 {
  if (document.getElementById(id).className==c2) {change(id,c1);}
  else {change(id,c2);}
 }
 else {alert('Error: the id \''+id+'\' was not found or has not yet been imported to the DOM.');}
}
//]]>
</script>
<style type="text/css">
/*<![CDATA[*/
.hidden {display: none;}
a {font-size: 20px;}
a:hover {color: #000;}
div {margin: 4px;}
/*]]>*/
</style>
</head>

<body>

<div id="window.location"><a href="javascript:dom_list('window.location');">window.location</a></div>

</body>
</html>
于 2013-07-30T00:21:28.397 に答える