我正在运行 Sitecore 6.5
我有两个 Sitecore 安装,想将整个站点从一个安装转移到另一个。
找到了一些关于序列化和创建包的文章,尽管它们没有详细介绍这两者如何组合在一起。
如何将站点从一个安装转移到另一个安装?
谢谢。
database serialization sitecore package content-management-system
我有2个选择列表mySelect和mySelect2.如果单击复选框,则选择一个时,另一个同时更改.
请检查以下代码:
<!DOCTYPE html>
<html>
<head>
<script type="text/javascript">
function displayResult() {
if(document.form1.billingtoo.checked == true) {
var x = document.getElementById("mySelect").selectedIndex;
// Set selected index for mySelect2
document.getElementById("mySelect2").selectedIndex = x;
}
}
</script>
</head>
<body>
<form name="form1">
Select your favorite fruit:
<select id="mySelect">
<option>Apple</option>
<option>Orange</option>
<option>Pineapple</option>
<option>Banana</option>
</select>
<br>
<input type="checkbox" name="billingtoo" onclick="displayResult()">
<br>
Select your favorite fruit 2:
<select id="mySelect2">
<option>Apple</option>
<option>Orange</option>
<option>Pineapple</option>
<option>Banana</option>
</select>
</form>
</body>
</html>
Run Code Online (Sandbox Code Playgroud)
...如何禁用(灰显)mySelect2,以便在值到位后不能对任何更改进行任何更改?
谢谢.