0

以下は、私が仕事に取り掛かろうとしているケースステートメントです。必要な場所にフォーマットを設定しましたが、この時点ではボタン(クリック)によるアクションはありません。

case 'This Websense category is filtered: <b>Uncategorized</b>.':
document.write('<p><b style="margin-left: 8px;">Help:</b><INPUT TYPE="button" STYLE="margin-left: 64px;" VALUE="Submit UNCATEGORIZED website to Websense" onClick="window.open=(http://aceinsight.websense.com/?url=' + 
'$*WS_URL*$,' + ' "_blank")' + '"></p>\
<hr />\
<p style="margin-left: 108px; color: #FF0000;">Clicking on the above button will open another webpage for Websense to categorize the above site. You will NOT receive a confirmation e-mail or any communication from Websense indicating your request is processing. Please note the response time for your request will vary. Allow three to four (3-4) hours for updates to take effect once approved.</p>');
break;
4

2 に答える 2

1

htmlを介して要素内のイベントをバインドしないでください。JavaScriptのデバッグが非常に困難になります。document.writeを使用して要素を作成できます。その後、DOMを使用して要素を参照し、その方法でイベントを追加できます。次に例を示します。

document.write('<button id="foo">Hai!</button>');
document.getElementById('foo').onclick = function () {
    window.open('http://aceinsight.websense.com/',"_blank");
};

http://jsfiddle.net/5QxuD/

于 2013-03-21T21:48:04.240 に答える
0

onClickの呼び出しが間違っている可能性があります。

試す:

window.open("http://aceinsight.websense.com/?url= (rest of your url)")

それ以外の:

window.open=("http://aceinsight.websense.com/?url= (rest of your url)")

https://developer.mozilla.org/en-US/docs/DOM/window.open

于 2013-03-21T21:44:05.227 に答える