1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88
|
<!DOCTYPE html>
<html>
<!--
Copyright 2010 The Closure Library Authors. All Rights Reserved.
Use of this source code is governed by the Apache License, Version 2.0.
See the COPYING file for details.
-->
<head>
<title></title>
<style>
label {
display: block;
}
</style>
<script src="../base.js"></script>
<script>
goog.require('goog.dom');
goog.require('goog.dom.selection');
</script>
</head>
<body>
<script>
var $ = goog.dom.getElement;
var isSyncing = false;
function update(i) {
isSyncing = true;
var selectionStart = $('selectionStart' + i).value;
var selectionEnd = $('selectionEnd' + i).value;
var selectionText = $('selectionText' + i).value;
var textField = $('textField' + i);
textField.focus();
if (!isNaN(selectionStart)) {
goog.dom.selection.setStart(textField, selectionStart);
}
if (!isNaN(selectionEnd)) {
goog.dom.selection.setEnd(textField, selectionEnd);
}
selection.setText(textField, selectionText);
isSyncing = false;
sync(i);
}
function sync(i) {
isSyncing = true;
var textField = $('textField' + i);
$('selectionStart' + i).value = goog.dom.selection.getStart(textField);
$('selectionEnd' + i).value = goog.dom.selection.getEnd(textField);
$('selectionText' + i).value = goog.dom.selection.getText(textField);
isSyncing = false;
}
</script>
<label>selectionStart <input type=text id=selectionStart1></label>
<label>selectionEnd <input type=text id=selectionEnd1></label>
<label>selectionText <input type=text id=selectionText1></label>
<button onclick="update(1)">Update Textarea</button><br>
<textarea id=textField1 onkeydown="sync(1)" onkeyup="sync(1)"></textarea>
<label>selectionStart <input type=text id=selectionStart2></label>
<label>selectionEnd <input type=text id=selectionEnd2></label>
<label>selectionText <input type=text id=selectionText2></label>
<button onclick="update(2)">Update Input</button><br>
<input type=text id=textField2 onkeydown="sync(2)" onkeyup="sync(2)">
<script>
window.onload = function() {
sync(1);
sync(2);
};
</script>
</body>
</html>
|