我在使用 JQuery 加载 html 时遇到了困难。以下示例是从另一个帖子中借来的。我无法在 Chrome 中使用它。有人可以帮我整理代码,以便针对所有浏览器进行优化吗?谢谢。
$(document).ready(function () {
$("#selectchoice").change(function () {
var selectedOption = $('#selectchoice :selected').val();
$containerDiv = $('#get_content');
$containerDiv.html("");
switch (selectedOption) {
case "1":
$containerDiv.html("http://www.google.com/index.html");
break;
case "2":
$containerDiv.load("http://www.yahoo.com/index.html");
break;
case "3":
$containerDiv.load("http://www.bing.com/index.html");
break;
default:
$containerDiv.load("");
break;
}
return true;
});
});
<select id="selectchoice">
<option>Select a choice</option>
<option>1</option>
<option>2</option>
<option>3</option>
</select>