2024-04-12 10:37:47 -04:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<p>Click the button to display the base URI of the document.</p>
|
|
|
|
<button onclick="myFunction()">Try it</button>
|
|
|
|
<p><strong>Note:</strong> The baseURI property is not supported in Internet Explorer.</p>
|
|
|
|
<p id="demo"></p>
|
|
|
|
<script>
|
|
|
|
function myFunction() {
|
|
|
|
var x = document.baseURI;
|
|
|
|
console.assert(x.endsWith('document.baseURI.html'), 'baseURI');
|
|
|
|
}
|
|
|
|
|
2024-05-19 15:08:35 -04:00
|
|
|
console.error('document.baseURI.html');
|
2024-04-12 10:37:47 -04:00
|
|
|
myFunction();
|
|
|
|
console.exit(0);
|
|
|
|
</script>
|
|
|
|
</body>
|
|
|
|
</html>
|