這裏運行的功能是我到目前爲止有:當獲取點擊一個鏈接
<html>
<head>
<title>Major League Baseball</title>
</head>
<body>
<script type="text/javascript" language="JavaScript">
document.writeln("2013 World Series");
var today= new Date()
$(document).ready(function() {
});
function changeLang(lang) {
document.cookie = 'myCulture=' + lang;
window.location.reload();
return false;
}
link1.onclick = function(e) { return myHandler(e); };
</SCRIPT>
<BODY onload=alert(today)>
<a id="link1" href="http://boston.redsox.mlb.com/index.jsp?c_id=bos&sv=1">Red Sox homepage</a>
<body onload="onload();">
<input type="text" name="enter" class="enter" value="" id="lolz"/>
<input type="button" value="click" onclick="kk();"/>
</body>
</html>
我想點擊一個鏈接時添加一個JavaScript函數。我希望鏈接在新窗口中打開。這會被視爲一種功能嗎?
這個鏈接怎麼樣? http://www.w3schools.com/jsref/event_onclick.asp – Rawa
你看過[target =「_ blank」](http://www.w3schools.com/tags/att_a_target.asp)嗎?它可能更簡單,取決於你想要做什麼 –
這應該工作。你會認爲這是一個JavaScript功能? – user2916725